-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
63 lines (56 loc) · 1.51 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
55
56
57
58
59
60
61
62
63
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "pySC/__init__.py"
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
"/doc",
"/tests",
]
[tool.hatch.build.targets.wheel]
packages = ["pySC"]
[project]
name = "pySC"
description = "Python version of Simulated Commissioning toolkit for synchrotrons (https://github.com/ThorstenHellert/SC) "
readme = "README.md"
requires-python = ">=3.9"
dynamic = ["version"]
#license = {file = "LICENSE.txt"}
keywords = ["Accelerator", "Synchrotron", "Commissioning", ]
maintainers = [
{name = "Lukáš Malina", email = "[email protected]"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"numpy>=2.0.0",
"scipy>=1.11.4",
"matplotlib>=3.7.3",
"accelerator-toolbox>=0.6.1"
]
[project.optional-dependencies]
test = [
"pytest>=7.4",
"pytest-cov>=3.0",
]
doc = [
"sphinx",
"travis-sphinx",
"sphinx-rtd-theme"
]
[project.urls]
Homepage = "https://github.com/lmalina/pySC"
Documentation = "https://lmalina.github.io/pySC/"
Repository = "https://github.com/lmalina/pySC.git"