-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
110 lines (99 loc) · 2.79 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
[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.9"
maintainers = [
{name = "Micah Gale", email = "[email protected]"}
]
authors = [
{name = "Micah Gale", email = "[email protected]"},
{name = "Travis Labossiere-Hickman", email = "[email protected]"},
{name = "Brenna Carbno", email="[email protected]"}
]
keywords = ["MCNP", "neutronics", "imcnp", "input file", "monte carlo", "radiation transport"]
license = {file="LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"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",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
]
dependencies = [
"numpy>=1.18",
"sly==0.5"
]
[project.optional-dependencies]
test = [
"coverage[toml]>=6.3.2",
"hypothesis",
"pytest",
"hypothesis",
"pytest-profiling",
"montepy[build]",
"phmutest",
]
# This is needed for a sphinx bug. See #414.
doc = [
"sphinx>=7.4.0",
"sphinxcontrib-apidoc",
"pydata_sphinx_theme",
"sphinx-sitemap",
"sphinx-favicon",
"sphinx-copybutton"
]
format = ["black>=23.3.0"]
build = [
"build",
"setuptools>=64.0.0",
"setuptools-scm>=8",
]
develop = [
"montepy[test,doc,format]",
]
demos = ["jupyter"]
demo-test = ["montepy[demos]", "papermill"]
[project.urls]
Homepage = "https://idaholab.github.io/MontePy/index.html"
Repository = "https://github.com/idaholab/MontePy.git"
Documentation = "https://www.montepy.org/"
"Bug Tracker" = "https://github.com/idaholab/MontePy/issues"
Changelog = "https://www.montepy.org/changelog.html"
[project.scripts]
"change_to_ascii" = "montepy._scripts.change_to_ascii:main"
[build-system]
requires = ["setuptools>=64.0.0", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_file = "montepy/_version.py"
[tool.setuptools.packages.find]
include = ["montepy*"]
[tool.coverage.run]
omit = ["tests/*"]
[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"
junit_family="xunit2"
filterwarnings="error"
testpaths = ["tests"]