-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
52 lines (45 loc) · 1.17 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
44
45
46
47
48
49
50
51
52
[build-system]
requires = [
"setuptools >= 65.4.0",
"wheel",
"setuptools_scm[toml] >= 7.0.5",
]
build-backend = "setuptools.build_meta"
[project]
name = "neutronics_material_maker"
authors = [
{ name="Jonathan Shimwell", email="mail@jshimwell.com" },
]
license = {file = "LICENSE.txt"}
description = "A tool for making reproducible materials and standardizing use across several neutronics codes"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["material", "library", "database", "serpent", "mcnp", "openmc", "fispact"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"asteval>=0.9.20",
]
dynamic = ["version"]
[tool.setuptools_scm]
write_to = "src/_version.py"
[project.optional-dependencies]
density = [
"coolprop"
]
tests = [
"pytest",
"pytest-cov"
]
docs = [
"sphinx",
"sphinx_autodoc_typehints",
]
[project.urls]
"Homepage" = "https://github.com/fusion-energy/neutronics_material_maker"
"Bug Tracker" = "https://github.com/fusion-energy/neutronics_material_maker/issues"
[tool.setuptools]
package-dir = {"" = "src"}