-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (43 loc) · 959 Bytes
/
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
[tool.poetry]
name = "mba-tcc"
version = "0.1.0"
description = ""
authors = ["Paulo Haddad <[email protected]>"]
readme = "README.md"
packages = [{include = "mba_tcc"}]
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
bokeh = "^2.4.3"
hyperopt = "^0.2.7"
jupyter = "*"
jupyterlab = "^3.4.7"
matplotlib = "3.6.0"
numpy = "*"
pandas = "*"
prefect = "*"
prefect-dask = "*"
prts = "^1.0.0.3"
pyarrow = "*"
python-dotenv = {extras = ["cli"], version = "^0.21.0"}
#darts = "^0.22.0"
#scipy = "*"
#seaborn = "*"
#typer = "*"
seaborn = "^0.12.1"
[tool.poetry.group.dev.dependencies]
autoflake = "*"
black = "*"
devtools = "*"
ipdb = "*"
ipython = "*"
isort = "*"
pylint = "*"
pytest = "*"
pytest-mock = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
# Python-style entrypoints and scripts are easily expressed
[tool.poetry.scripts]
main = "mba_tcc.run_pipe:main"
test_prepare = "tests.test_utils:make_test_resource"