forked from idaholab/MontePy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
71 lines (61 loc) · 1.92 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[project]
name = "montepy"
dynamic = ["version"]
description = "A library for reading, editing, and writing MCNP input files"
# gitlab limits the readme to 4,000 chars.
readme = "README.md"
requires-python = ">=3.8"
maintainers = [
{name = "Micah Gale", email = "[email protected]"}
]
authors = [
{name = "Micah Gale", email = "[email protected]"},
{name = "Travis Labossiere-Hickman", email = "[email protected]"},
{name = "Brenna Carbno"}
]
keywords = ["MCNP", "neutronics", "imcnp", "input file", "monte carlo", "radiation transport"]
license = {file="LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3 :: Only",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
]
dependencies = [
"numpy",
"sly==0.5"
]
[project.optional-dependencies]
test = ["coverage", "pytest"]
doc = ["sphinx", "sphinxcontrib-apidoc", "sphinx_rtd_theme"]
[project.urls]
Homepage = "https://idaholab.github.io/MontePy/index.html"
Repository = "https://github.com/idaholab/montepy.git"
Documentation = "https://idaholab.github.io/MontePy/index.html"
"Bug Tracker" = "https://github.com/idaholab/MontePy/issues"
[build-system]
requires = ["setuptools >= 61.0.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["montepy*"]
[tool.setuptools.dynamic]
version = {attr = "montepy.__version__"}
[tool.coverage.run]
source = ["montepy"]
[tool.coverage.report]
precision = 2
show_missing = true
fail_under = 90.0
exclude_also = [
"\\s+@abstractmethod\\s*",
"pass",
]
[tool.pytest.ini_options]
minversion = "6.0"
junit_logging = "all"