-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 810 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (33 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[project]
name = "easy-es"
version = "0.1.8"
description = "A package to conduct financial event study with few lines of code."
readme = "README.md"
authors = [
{ name = "Vladislav Pyzhov", email = "vladpyzhov@gmail.com" }
]
requires-python = ">=3.12"
dependencies = [
"nbformat>=5.10.4",
"numpy>=1.26,<3",
"pandas>=2.0,<2.3",
"plotly>=6,<7",
"pytest>=8.4.2",
"python-dateutil>=2.9.0.post0",
"scikit-learn>=1.6",
"scipy>=1.11,<2",
"statsmodels>=0.14,<0.15",
"tqdm>=4.66",
"typing-extensions>=4.8",
"yfinance>=0.2.36",
]
[project.scripts]
easy-event-study = "easy_event_study:main"
[project.optional-dependencies]
notebooks = [
"ipykernel>=6,<7",
"nbformat>=5,<6",
]
[build-system]
requires = ["uv_build>=0.8.12,<0.9.0"]
build-backend = "uv_build"