-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (28 loc) · 883 Bytes
/
pyproject.toml
File metadata and controls
33 lines (28 loc) · 883 Bytes
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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "discos-client"
version = "0.2.0"
description = "Python client for DISCOS"
authors = [{ name = "Giuseppe Carboni", email = "giuseppe.carboni@inaf.it" }]
license = { text = "GPL-3.0-only" }
requires-python = ">=3.9"
readme = "README.rst"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"pyzmq",
"platformdirs"
]
[tool.setuptools]
packages = ["discos_client"]
[project.scripts]
discos-keygen = "discos_client.scripts:keygen"
[tool.setuptools.package-data]
discos_client = ["schemas/**", "servers/**"]
[project.optional-dependencies]
test = ["coverage", "prospector", "jsonschema", "referencing"]
docs = ["sphinx<9,>=6", "sphinx-rtd-theme", "sphinx-autodoc-typehints", "sphinx-jsonschema"]