-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
53 lines (48 loc) · 1.43 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
[build-system]
# Defined by PEP 518:
requires = [
# for version management
"setuptools>=64", "setuptools_scm[toml]>=8"
]
build-backend = "setuptools.build_meta"
[project]
name = "dcoraid"
authors = [
# In alphabetical order.
{name = "Paul Müller"},
]
maintainers = [
{name = "Paul Müller", email="[email protected]"},
]
description = "GUI/CLI for managing data on DCOR"
readme = "README.rst"
requires-python = ">=3.10, <4"
keywords = ["RT-DC", "DC", "deformability", "cytometry"]
classifiers = [
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Intended Audience :: Science/Research',
]
license = {text = "GPL v3"}
dependencies = [
"dclab[dcor]>=0.62.11",
"numpy>=1.21",
"requests>=2.31", # CVE-2023-32681
"urllib3>=2.0", # requests_toolbelt and general compatibility
"requests_cache", # caching API-'get' requests
"requests_toolbelt>=1.0.0", # multipart uploads with progress
]
dynamic = ["version"]
[project.optional-dependencies]
GUI = ["pyqt5"]
[project.scripts]
dcoraid = "dcoraid.__main__:main"
dcoraid-upload-task = "dcoraid.cli:upload_task"
[project.urls]
source = "https://github.com/DCOR-dev/DCOR-Aid"
tracker = "https://github.com/DCOR-dev/DCOR-Aid/issues"
documentation = "https://dc.readthedocs.io"
changelog = "https://github.com/DCOR-dev/DCOR-Aid/blob/master/CHANGELOG"
[tool.setuptools_scm]
write_to = "dcoraid/_version.py"
version_scheme = "post-release"