-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
92 lines (81 loc) · 1.82 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
[build-system]
requires = ["setuptools>=65", "wheel", "setuptools_scm[toml]>=3.4"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "datamate/version.py"
[tool.setuptools]
include-package-data = true
[project]
name = "datamate"
dynamic = ["version"]
description = "A data organization and compilation system."
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.9,<3.14"
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"""License :: OSI Approved :: MIT License""",
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
]
dependencies = [
"numpy",
"pandas",
"typing_extensions",
"h5py>=3.6.0",
"ruamel.yaml",
"PyYAML"
]
[project.optional-dependencies]
dev = [
"pre-commit",
"jupyter",
"setuptools_scm",
"pytest",
"ruff",
"pytest-cov",
"pytest-asyncio",
"tqdm",
"jupyter"
]
docs = [
"mkdocs",
"mkdocs-material",
"markdown-include",
"mkdocs-redirects",
"mkdocs-jupyter",
"mkdocstrings[python] >= 0.18",
"nbconvert",
"mike",
"mkdocs-macros-plugin",
"jupyter",
"tabulate",
"tqdm",
"ipywidgets",
]
[tool.setuptools.packages.find]
include = ["datamate"]
[tool.ruff]
line-length = 88
extend-include = []
[tool.ruff.lint]
select = ["E", "F", "W", "B", "SIM", "I"]
ignore = [
"E731",
"B006",
"B008",
"F841",
]
[tool.ruff.lint.extend-per-file-ignores]
"__init__.py" = ["I001", "E402", "F401", "F403"]
"test_*.py" = ["F403", "F405"]
[tool.ruff.format]
preview = true
quote-style = "preserve"
[tool.pytest.ini_options]
testpaths = ["tests"]
[project.urls]
"Homepage" = "https://github.com/flyvis/datamate"
"Bug Tracker" = "https://github.com/flyvis/datamate/issues"