-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
39 lines (37 loc) · 1.22 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
[project]
name = "caen_felib"
authors = [
{ name="Giovanni Cerretani" },
{ name="Daniele Ninci" },
]
description = "Official Python binding for the CAEN FELib."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Physics",
"Typing :: Typed",
]
dependencies = [
"numpy>=1.20",
"typing-extensions>=4.0.0",
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "caen_felib.__version__"}
[project.urls]
Homepage = "https://www.caen.it"
Documentation = "https://www.caen.it/products/caen-felib-library/"
Support = "https://www.caen.it/mycaen/support/"
Source = "https://github.com/caenspa/py-caen-felib"
Changelog = "https://github.com/caenspa/py-caen-felib/blob/master/PYCHANGELOG"