-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
80 lines (71 loc) · 1.64 KB
/
pyproject.toml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[tool.poetry]
name = "paper-and-experiments"
version = "0.1.0"
description = ""
authors = ["Peter Gade <[email protected]>"]
maintainers = [
"Peter Gade <[email protected]>"
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/PeterAVG/paper_dot"
packages = [
{ include = "src"},
]
[tool.poetry.dependencies]
python = "^3.11"
# numba = "^0.57.0" # waiting for python 3.11 compatibility...
# statsforecast # same...
pandas = "^1.5.2"
numpy = "^1.23.5"
python-dotenv = "^0.21.0"
multipledispatch = "^0.6.0"
cloudpickle = "^2.2.0"
scipy = "^1.9.3"
statsmodels = "^0.13.5"
openpyxl = "^3.0.10"
[tool.poetry.group.optimization.dependencies]
# cvxpy
# glpk
# pyomo
# ipopt
pyomo = "^6.4.3"
[tool.poetry.group.julia.dependencies]
julia = "^0.6.0"
[tool.poetry.group.machine_learning.dependencies]
# tensorflow
# pytorch
scikit-learn = "^1.1.3"
[tool.poetry.group.api.dependencies]
fastparquet = "^2022.12.0"
pydantic = "^1.10.2"
requests = "^2.28.1"
boto3 = "^1.26.24"
fastapi = "^0.88.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^2.20.0"
black = "^22.10.0"
flake8 = "^6.0.0"
flake8-print = "^5.0.0"
flake8-breakpoint = "^1.1.0"
flake8-bugbear = "^22.12.6"
mypy = "^0.991"
isort = "^5.10.1"
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
[tool.poetry.group.interactive.dependencies]
ipython = "^8.7.0"
jupyter = "^1.0.0"
ipdb = "^0.13.9"
radian = "^0.6.4"
[tool.poetry.group.plot.dependencies]
streamlit = "^1.15.2"
streamlit-aggrid = "^0.3.3"
dash = "^2.7.0"
matplotlib = "^3.6.2"
seaborn = "^0.12.1"
jupyter-dash = "^0.4.2"
pydeck = "^0.8.0"
[build-system]
requires = ["poetry-core>=1.4.0"]
build-backend = "poetry.core.masonry.api"