-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (30 loc) · 986 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "sipmarray"
version = "1.1"
authors = [{ name="Ricardo Peres", email="[email protected]"},]
description = "A simple package to get the geometry of SiPM arrays."
readme = "README.md"
requires-python = ">=3.7"
dependencies = [
"numpy",
"matplotlib",
"pandas"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Physics",
]
[project.scripts]
sipmarray = "sipmarray.scripts.script_sipmarray:main"
sipmunit = "sipmarray.scripts.script_sipmunit:main"
[project.urls]
"Homepage" = "https://github.com/ricmperes/sipmarray"
"Bug Tracker" = "https://github.com/ricmperes/sipmarray/issues"
"Documentation" = "https://ricmperes.github.io/sipmarray/"