-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
61 lines (54 loc) · 1.33 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
[build-system]
requires = ["setuptools>=62.0", "wheel>=0.37"]
build-backend = "setuptools.build_meta"
[project]
name = "datajoint-utilities"
version = "0.5.1"
description = "A general purpose repository containing all generic tools/utilities surrounding the DataJoint ecosystem"
requires-python = ">=3.9, <3.12"
license = { file = "LICENSE" }
authors = [{ name = "DataJoint", email = "[email protected]" }]
keywords = ["datajoint", "workflow"]
classifiers = [
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
dependencies = [
"datajoint>=0.14.3",
"termcolor",
"slack-sdk",
"python-dotenv",
"boto3",
"requests",
]
[project.scripts]
tmplcfg = "datajoint_utilities.cmdline.tmplcfg:cli"
[project.urls]
Source = "https://github.com/datajoint-company/datajoint-utilities"
DataJoint = "https://datajoint.com/docs"
[tool.setuptools]
package-data = { "*" = ["*.pyi", "py.typed"] }
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-rA"
testpaths = ["tests"]
[tool.black]
line-length = 88
target-version = ["py310"]
color = false
exclude = '''
/(
\.git
| \.venv
| _build
| example_data
| build
| dist
| env
| venv
)/
'''
[tool.isort]
profile = "black"