forked from datajoint/datajoint-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
71 lines (66 loc) · 1.57 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
[project]
name = "datajoint"
version = "0.14.3"
dependencies = [
"numpy",
"pymysql>=0.7.2",
"pyparsing",
"ipython",
"pandas",
"tqdm",
"networkx",
"pydot",
"minio>=7.0.0",
"matplotlib",
"otumat",
"faker",
"cryptography",
"urllib3"
]
requires-python = ">=3.8,<4.0"
authors = [
{name = "Dimitri Yatsenko", email = "[email protected]"},
{name = "Raphael Guzman"},
{name = "Edgar Walker"},
{name = "DataJoint Contributors", email = "[email protected]"},
]
maintainers = [
{name = "Dimitri Yatsenko", email = "[email protected]"},
{name = "DataJoint Contributors", email = "[email protected]"},
]
description = "A relational data pipeline framework."
readme = "README.md"
license = {file = "LICENSE.txt"}
keywords = [
"database",
"data pipelines",
"scientific computing",
"automated research workflows",
]
classifiers = [
"Programming Language :: Python"
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"black==24.2.0",
"flake8",
]
[project.urls]
Homepage = "https://datajoint.com/docs"
Documentation = "https://datajoint.com/docs"
Repository = "https://github.com/datajoint/datajoint-python"
"Bug Tracker" = "https://github.com/datajoint/datajoint-python/issues"
Changelog = "https://github.com/datajoint/datajoint-python/blob/master/CHANGELOG.md"
[project.entry-points."console_scripts"]
dj = "datajoint.cli:cli"
datajoint = "datajoint.cli:cli"
[tool.setuptools]
packages = ["datajoint"]
[build-system]
requires = [
"setuptools>=60",
"setuptools-scm>=8.0"
]
build-backend = "setuptools.build_meta"