-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (75 loc) · 1.68 KB
/
Copy pathpyproject.toml
File metadata and controls
80 lines (75 loc) · 1.68 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[project]
name = "scale-olm"
version = "0.14.3"
description = "ORIGEN Library Manager: A tool for building and managing ORIGEN reactor data libraries"
authors = [
{ name = "William Wieselquist", email = "ww5@ornl.gov" },
]
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<8.2",
"h5py",
"imohash",
"jinja2",
"matplotlib",
"numpy",
"pydantic",
"pygments",
"scipy",
"structlog",
"tqdm",
"typing-extensions",
]
requires-python = ">=3.9,<3.13"
[project.optional-dependencies]
test = [
"hypothesis",
"pytest",
"pytest-cov",
"pytest-xdist",
]
docs = [
"click-extra<4.8",
"myst-parser",
"sphinx",
"sphinx-autobuild",
"sphinx-click",
"sphinx-copybutton",
"sphinx-jsonschema",
"sphinx-notfound-page",
"sphinx-rtd-theme",
"sphinx-toolbox",
"tomli",
]
notebooks = [
"ipykernel",
"jupyterlab",
"testbook",
]
dev = [
"black",
"bumpversion",
"flake8",
"pre-commit",
]
[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"