-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (44 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
49 lines (44 loc) · 1.17 KB
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
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "DynamicAnnotationDB"
version = "5.14.1"
description = "Annotation Database pendant to the chunkedgraph"
readme = "README.md"
authors = [
{name = "Sven Dorkenwald", email = "sdorkenw@princeton.edu"},
{name = "Derrick Brittain"}
]
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
]
requires-python = ">=3.8"
dependencies = [
"marshmallow==3.5.1",
"emannotationschemas>=5.4.0",
"sqlalchemy<1.4",
"psycopg2-binary",
"geoalchemy2",
"pytz",
"alembic",
"shapely",
"jsonschema<4.0",
]
[project.urls]
Homepage = "https://github.com/seung-lab/DynamicAnnotationDB"
Repository = "https://github.com/seung-lab/DynamicAnnotationDB"
[dependency-groups]
dev = [
"pytest",
"pytest-cov",
"docker"
]
[tool.pytest.ini_options]
addopts = "--cov dynamicannotationdb --cov-report html --junitxml=test-reports/test.xml"
[tool.setuptools.packages.find]
where = ["."]
include = ["dynamicannotationdb*"]