-
Notifications
You must be signed in to change notification settings - Fork 57
/
pyproject.toml
58 lines (50 loc) · 1.27 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = 'mlebench'
readme = "README.md"
requires-python = ">=3.11"
version = "1.0.0"
dependencies = [
"appdirs>=1.4.4",
"docker>=7.1",
"fastparquet>=2024.5.0",
"kaggle>=1.6",
"levenshtein>=0.25.1",
"openai>=1.10.0",
"pandas>=2.2",
"pyyaml>=6.0",
"py7zr>=0.21",
"scikit-learn>=1.5",
"tensorflow>=2.16",
"pillow>=10.3",
"python-dotenv>=1.0.1",
"aiohttp>=3.9.5",
"tenacity>=8.5.0",
"nbformat>=5.10.4",
"nbconvert>=7.16.4",
"ipython>=8.26.0",
"pymongo>=4.8.0",
"pycocotools>=2.0.8",
"diskcache>=5.6.3",
"pyquaternion>=0.9.9",
"shapely>=2.0.5",
]
[tool.setuptools]
packages = { find = { include = ["mlebench", "mlebench.*"] } }
[project.scripts]
mlebench = "mlebench.cli:main"
[project.optional-dependencies]
formatters = ["black>=23.3", "isort>=5.13"]
dev = ["pytest>=8.2", "mypy>=1.10", "pre-commit>=3.7"]
[tool.setuptools.package-data]
mlebench = ["competitions/**/*"]
[tool.black]
line-length = 100 # match the precommit
[tool.pytest.ini_options]
# Pytest can take a long time to collect test cases
# when many Kaggle competitions have been downloaded.
# We avoid this up by telling Pytest where the
# tests live ahead of time.
testpaths = ["tests"]