-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (51 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
57 lines (51 loc) · 1.47 KB
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
[build-system]
requires = ["chronver", "setuptools>=66"]
build-backend = "setuptools.build_meta"
[project]
authors = [
{ name = "RadiaSoft LLC", email = "pip@radiasoft.net" },
]
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 = [
"pykern",
"libEnsemble",
"numpy",
"nlopt",
"mpmath",
"jinja2>=3.0.1",
]
description = "A Python library with tools for optimization problems"
dynamic = ["version"]
name = "rsopt"
readme = "README.md"
[project.scripts]
rsopt = "rsopt.rsopt_console:main"
[project.optional-dependencies]
full = [
'rsbeams@git+https://github.com/radiasoft/rsbeams',
'sirepo',
'lume-genesis@git+https://github.com/cchall/lume-genesis',
'DFO-LS', # If using dfols optimizer
'pandas', # Needed for some post-processing utilities
'xopt', # If using MOBO algorithm for optimization
'pymoo', # Used by some MOBO examples
'deap' # Used for NSGA-II algorithm implementation
]
nersc = [
'rsbeams@git+https://github.com/radiasoft/rsbeams',
'lume-genesis@git+https://github.com/cchall/lume-genesis',
]
[project.urls]
Homepage = "https://git.radiasoft.org/rsopt"
[tool.setuptools.package-data]
rsopt = ["package_data/**"]
[tool.setuptools.packages.find]
include = ["rsopt*"]