-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (38 loc) · 1.08 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
[project]
name = "scale-olm"
version = "0.14.1"
description = "ORIGEN Library Manager: A tool for building and managing ORIGEN reactor data libraries"
authors = [
{ name = "William Wieselquist", email = "[email protected]" },
]
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["SCALE", "ORIGEN", "Library"]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
dependencies = [
"click",
"matplotlib",
"scipy",
"numpy",
"pytest",
"pydantic",
]
requires-python = ">=3.9"
[project.urls]
documentation = "https://scale-olm.readthedocs.io"
bug-tracker = "https://github.com/wawiesel/olm/issues"
source = "https://github.com/wawiesel/olm"
[project.scripts]
olm = "scale.olm.__main__:olm"
[tool.setuptools.packages.find]
include = ["scale.*"]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"