-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (60 loc) · 1.37 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (60 loc) · 1.37 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[build-system]
requires = ["hatchling>=1.26.1"]
build-backend = "hatchling.build"
[project]
name = "annotationengine"
dynamic = ["version"]
description = "A service for storing arbitrary annotation data on EM volumes stored in a cloud volume"
readme = "README.md"
requires-python = ">=3.9,<3.10"
authors = [
{ name = "Forrest Collman", email = "forrestc@alleninstitute.org" }
]
classifiers = [
"License :: OSI Approved :: MIT License",
]
dependencies = [
"Flask<2.0",
"MarkupSafe<2.1",
"emannotationschemas>=5.26.3",
"dynamicannotationdb>=5.15.0",
"caveclient>=4.20.2",
"multiwrapper",
"jsonschema<4.0",
"middle-auth-client>=3.11.1",
"flask_sqlalchemy",
"flask_cors",
"flask-marshmallow==0.14.0",
"flask-admin",
"flask-restx",
"flask-accepts",
"uWSGI",
"marshmallow-sqlalchemy",
"requests",
"cachetools",
]
[dependency-groups]
dev = [
"pytest>=3.0.5",
"pytest-cov>=2.2.1",
"pytest-postgresql",
"pytest-env",
"pytest-mock",
"requests-mock",
"docker",
"coverage",
]
[tool.hatch.version]
path = "annotationengine/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["annotationengine"]
[tool.hatch.build.targets.sdist]
include = [
"/annotationengine",
"/test",
"/README.md",
"/LICENSE",
"/requirements.txt",
"/requirements.in",
"/test_requirements.txt",
]