-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
49 lines (41 loc) · 1.29 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
[project]
name = "datahugger"
description = "One downloader for many scientific data and code repositories!"
authors = [
{ name = "Jonathan de Bruin", email = "[email protected]" }
]
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
license = {text = "MIT"}
dependencies = ["jsonpath_ng", "requests", "requests-cache", "scitree", "tqdm"]
dynamic = ["version"]
requires-python = ">=3.8"
[project.scripts]
datahugger = "datahugger.__main__:main"
[project.optional-dependencies]
all = ["datasets"]
benchmark = ["pandas", "tabulate"]
lint = ["ruff"]
test = ["pytest", "tomli; python_version < '3.11'", "pytest-xdist"]
docs = ["mkdocs-material"]
[build-system]
build-backend = 'setuptools.build_meta'
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
[tool.setuptools]
packages = ["datahugger"]
[tool.setuptools_scm]
write_to = "datahugger/_version.py"
[tool.ruff]
extend-include = ["*.ipynb"]
[tool.ruff.lint]
select = ["E", "F", "UP", "I", "B"]
[tool.ruff.lint.isort]
force-single-line = true