-
Notifications
You must be signed in to change notification settings - Fork 141
/
pyproject.toml
119 lines (113 loc) · 2.58 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
[tool]
[tool.poetry]
name = "nannyml"
version = "0.8.1"
homepage = "https://github.com/nannyml/nannyml"
description = "NannyML, Your library for monitoring model performance."
authors = ["Niels Nuyttens <[email protected]>"]
readme = "README.md"
license = "Apache-2.0"
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
]
packages = [
{ include = "nannyml" },
# { include = "tests", format = "sdist" },
]
[tool.poetry.scripts]
nml = "nannyml.cli.cli:cli"
nannyml = "nannyml.cli.cli:cli"
[tool.poetry.dependencies]
python = ">=3.7.1,<3.11"
pandas = "^1.3"
python-dateutil = "^2.8.2"
scikit-learn = "^1.0.2"
joblib = "^1.1.0"
category-encoders = "^2.3.0"
matplotlib = "^3.5.1"
plotly = "^5.6.0"
scipy = "^1.7.3"
numpy = "^1.21"
seaborn = "^0.11.2"
kaleido = "0.2.1"
pyarrow = "^8.0.0"
gcsfs = "^2022.5.0"
pydantic = "^1.9.1"
rich = "^12.5.1"
click = "^8.1.3"
PyYAML = "^6.0"
Jinja2 = "<3.1"
pyfiglet = "^0.8.post1"
lightgbm = "^3.3.2"
FLAML = "^1.0.11"
s3fs = "^2022.8.2"
sqlmodel = "^0.0.8"
APScheduler = "^3.9.1"
psycopg2-binary = "^2.9.3"
analytics-python = "^1.4.0"
python-dotenv = "^0.21.0"
[tool.poetry.group.dev.dependencies]
black = "^22.3.0"
isort = "^5.8.0"
flake8 = "^3.9.2"
flake8-docstrings = "^1.6.0"
flake8-typing-imports = "^1.12.0"
mypy = "^0.990"
pytest = "^6.2.4"
pytest-cov = "^2.12.0"
pytest-mock = "^3.7.0"
tox = "^3.20.1"
virtualenv = "^20.2.2"
pip = "^20.3.1"
twine = "^3.3.0"
pre-commit = "^2.12.0"
toml = "^0.10.2"
bump2version = "^1.0.1"
jupyterlab = "^3.2.9"
sphinx = "^4.5.0"
sphinx-rtd-theme = "^1.0.0"
sphinx-toggleprompt = "^0.2.0"
sphinx-copybutton = "^0.5.0"
typing-extensions = "^4.4.0"
sphinx-toolbox = "^3.2.0"
pytest-lazy-fixture = "^0.6.3"
[tool.black]
line-length = 120
skip-string-normalization = true
target-version = ['py37', 'py38', 'py39']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 120
skip_gitignore = true
# you can skip files as below
#skip_glob = docs/conf.py
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"