-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (30 loc) · 954 Bytes
/
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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "aidatlu"
dynamic = ["version"]
license = { "text" = "AGPL-3.0" }
description = "Control software for AIDA-2020 TLU"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.10"
authors = [
{name = "Rasmus Partzsch", email="rasmus.partzsch@uni-bonn.de"},
{name = "Christian Bespin", email="cbespin@uni-bonn.de"}
]
dependencies = [
"numpy",
"tables",
"coloredlogs",
"pyzmq",
"tqdm"
]
[project.urls]
"Documentation" = "https://silab-bonn.github.io/aidatlu/"
"Repository" = "https://github.com/SiLab-Bonn/aidatlu/"
[project.optional-dependencies]
hw = ["online_monitor"] # uhal package needs to be installed manually!
test = ["pytest", "coverage"]
doc = ["sphinx", "myst_parser", "sphinx_mdinclude", "pydata-sphinx-theme"]
[tool.setuptools.dynamic]
version = {attr = "aidatlu.__version__"}