-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (53 loc) · 1.56 KB
/
pyproject.toml
File metadata and controls
57 lines (53 loc) · 1.56 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
[build-system]
# Defined by PEP 518:
requires = [
# for version management
"setuptools>=46", "setuptools_scm[toml]>=6.2"
]
build-backend = "setuptools.build_meta"
[project]
name = "dcor_control"
authors = [
# In alphabetical order.
{name = "Paul Müller"},
]
maintainers = [
{name = "Paul Müller", email="dev@craban.de"},
]
description = "CLI for maintaining DCOR installations"
readme = "README.rst"
requires-python = ">=3.8, <4"
keywords = ["DC", "DCOR", "deformability", "cytometry"]
classifiers = [
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Visualization',
'Intended Audience :: Science/Research',
]
license = {text = "GNU Affero General Public License v3 or later (AGPLv3+)"}
dependencies = [
"appdirs",
"ckan>=2.11.3, <3",
"click>=7",
"cryptography>=41", # client beaker session cookies
"ckanext-dc_log_view>=1.0.0",
"ckanext-dc_serve>=1.0.7",
"ckanext-dc_view>=1.0.1",
"ckanext-dcor_depot>=1.0.3",
"ckanext-dcor_schemas>=1.0.0",
"ckanext-dcor_theme>=1.1.2",
"dcor_shared>=1.0.4",
"importlib_resources",
"numpy>=1.21", # CVE-2021-33430
"uwsgi>=2.0.26",
]
dynamic = ["version"]
[project.urls]
source = "https://github.com/DCOR-dev/dcor_control"
tracker = "https://github.com/DCOR-dev/dcor_control/issues"
changelog = "https://github.com/DCOR-dev/dcor_control/blob/main/CHANGELOG"
[project.scripts]
dcor = "dcor_control.cli:main"
[tool.setuptools_scm]
write_to = "dcor_control/_version.py"
version_scheme = "post-release"