-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
72 lines (64 loc) · 1.8 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
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "pymcnp"
authors = [
{ name = "Mauricio Ayllon Unzueta", email = "mauri.ayllon12@gmail.com" },
{ name = "Arun Persaud", email = "apersaud@lbl.gov" },
{ name = "Devin Pease", email = "dmpease@lbl.gov" },
]
description = "Python-based MCNP tools."
readme = "README.md"
license = {file = "LICENSE"}
dynamic = ["version"]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"docopt",
"fastparquet",
"matplotlib",
"molmass",
"numpy",
"pandas",
"pytest",
"rich",
"scipy",
"pyvista",
]
[project.optional-dependencies]
docs = [
"myst_parser",
"Sphinx",
"sphinx_rtd_theme",
]
[project.urls]
Documentation = "https://pymcnp.readthedocs.io/en/latest/"
Homepage = "https://github.com/mauricioAyllon/PyMCNP"
Issues = "https://github.com/mauricioAyllon/PyMCNP/issues"
Changelog = "https://github.com/mauricioAyllon/PyMCNP/blob/master/CHANGELOG.md"
[project.scripts]
pymcnp = "pymcnp.main:main"
demo = "demo.main:main"
[tool.setuptools.packages.find]
where = ["./src"]
[tool.setuptools_scm]
write_to = "./src/pymcnp/version.py"
[tool.ruff]
line-length = 100
[tool.ruff.format]
quote-style = "single"
indent-style = "space"
docstring-code-format = true
docstring-code-line-length = 80