forked from Yorko/mlcourse.ai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (44 loc) · 1.09 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
[tool.poetry]
name = "mlcourse.ai"
version = "1.0.0"
description = "Open Machine Learning course by ods.ai"
authors = ["Yury Kashnitsky <[email protected]>"]
license = "CC BY-NC-SA 4.0"
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
eli5 = "0.11.0"
holidays = "0.24" # bugs in Prophet with later versions
ipywidgets = "^8.0.6"
jupyter = "^1.0.0"
jupyter-book = "^0.15.1"
matplotlib = "^3.7.1"
numpy = "^1.24.3"
pandas = "^1.4.4"
pillow = "^9.5.0"
plotly = "5.12.0"
prophet = "^1.1"
pydot = "^1.4.2"
pydotplus = "^2.0.2"
pytesseract = "^0.3.10"
reverse-geocoder = "^1.5.1"
seaborn = "^0.12.2"
scikit-learn = "^1.2.2"
scipy = "^1.10.1"
statsmodels = "^0.14.0"
ua-parser = "^0.16.1"
user_agents = "^2.2.0"
wordcloud = "^1.9.1"
xgboost = "^1.7.5"
[tool.poetry.dev-dependencies]
black = {version = "^21.12b0", allow-prereleases = true}
fonttools = "^4.37.1"
gdown = "^4.7.1"
ghp-import = "^2.1.0"
pre-commit = "^2.20.0"
pylatexenc = "^2.10"
pylint = "^2.15.0"
pyyaml = "^6.0"
sphinx-jupyterbook-latex = "^0.5.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"