-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 925 Bytes
/
pyproject.toml
File metadata and controls
32 lines (28 loc) · 925 Bytes
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
[build-system]
requires = ["setuptools>=62.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "nuclear-rose"
dynamic = ["version", "dependencies"]
authors = [
{name="Daniel Odell"},
{name="Pablo Giuliani"},
{name="Kyle Godbey"},
{name="Kyle Beyer"},
{name="Moses Y.-H. Chan"}
]
description = "The Reduced-Order Scattering Emulator (rose) is a user-friendly software for building efficient surrogate models for nuclear scattering."
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools_scm]
write_to = "src/rose/__version__.py"
[tool.setuptools.package-data]
mypkg = ["*.txt", "*.json"]