-
Notifications
You must be signed in to change notification settings - Fork 20
/
pyproject.toml
43 lines (38 loc) · 1.01 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
[build-system]
requires = ["chronver", "setuptools>=66"]
build-backend = "setuptools.build_meta"
[project]
authors = [
{ name = "RadiaSoft LLC", email = "[email protected]" },
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python",
"Topic :: Utilities",
]
dependencies = [
"h5py",
"pykern",
"pathos",
"numpy>=1.19.1",
"scipy",
"sympy>=1.2",
"ruamel.yaml",
]
description = "Code-agnostic Python utilities for particle beam simulations"
dynamic = ["version"]
name = "rsbeams"
readme = "README.md"
[project.scripts]
rsbeams = "rsbeams.rsbeams_console:main"
kinematic = "rsbeams.rsbeams.rsstats.kinematic:main"
[project.urls]
Homepage = "https://git.radiasoft.org/rsbeams"
[tool.setuptools.package-data]
rsbeams = ["package_data/**"]
[tool.setuptools.packages.find]
include = ["rsbeams*"]