-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (49 loc) · 1.23 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
54
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "baldaquin"
version = "0.4.0"
dependencies = [
"loguru",
"matplotlib",
"numpy",
"pydata-sphinx-theme",
"pyserial",
"PySide6",
"scipy"
]
requires-python = ">=3.7"
authors = [
{name = "Luca Baldini", email = "luca.baldini@pi.infn.it"},
]
maintainers = [
{name = "Luca Baldini", email = "luca.baldini@pi.infn.it"}
]
description = "BALanced DAQ User INterface"
readme = "README.md"
license = {file = "LICENSE.txt"}
keywords = ["DAQ", "Physics", "detector", "data flow"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python"
]
# [project.optional-dependencies]
# gui = ["PyQt5"]
# cli = [
# "rich",
# "click",
# ]
[project.urls]
Homepage = "https://github.com/lucabaldini/baldaquin"
Documentation = "https://lucabaldini.github.io/baldaquin/"
Repository = "https://github.com/lucabaldini/baldaquin"
"Bug Tracker" = "https://github.com/lucabaldini/baldaquin/issues"
Changelog = "https://lucabaldini.github.io/baldaquin/release_notes.html"
[project.scripts]
baldaquin = "baldaquin.cli:main"
# [project.gui-scripts]
# spam-gui = "spam:main_gui"
#
# [project.entry-points."spam.magical"]
# tomatoes = "spam:main_tomatoes"