-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
54 lines (46 loc) · 969 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
51
52
53
54
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "feature-discovery"
version = "0.0.1"
authors = [{ name = "Andra-Denis Ionescu"}]
classifiers = [
"Programming Language :: Python :: 3"
]
dependencies = [
"autogluon == 0.7.0",
"deprecation == 2.1.0",
"ITMO-FS == 0.3.3",
"joblib == 1.2.0",
"matplotlib == 3.3.4",
"neo4j == 4.4.0",
"notebook == 6.4.5",
"numpy == 1.22.3",
"pandas == 1.5.3",
"polars == 0.19.12",
"scikit-learn == 1.2.2",
"seaborn == 0.11.2",
"tqdm == 4.64.0",
"typer == 0.9.0",
"valentine == 0.1.6"
]
readme = "README.md"
requires-python = ">=3.8"
[project.scripts]
feature-discovery-cli = "feature_discovery.cli:app"
[tool.setuptools.package-dir]
"" = "src"
[tool.black]
line-length = 120
skip-string-normalization = true
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| build
| dist
)/
'''