-
Notifications
You must be signed in to change notification settings - Fork 24
/
pyproject.toml
72 lines (66 loc) · 2.19 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 = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mcdc"
version = "0.11.1"
authors = [
{ name="Ilham Variansyah", email="variansi@oregonstate.edu" },
{ name="Sam Pasmann", email="spasmann@nd.edu" },
{ name="Joanna Morgan", email="morgajoa@oregonstate.edu" },
{ name="Kayla Clements", email="clemekay@oregonstate.edu" },
{ name="Braxton Cuneo", email="bcuneo@seattleu.edu" },
{ name="Caleb Shaw"},
{ name="Rohan Pankaj"},
{ name="Alexander Mote"},
{ name="Ethan Lame"},
{ name="Benjamin Whewell"},
{ name="Ryan G. McClarren"},
{ name="Todd S. Palmer"},
{ name="Lizhong Chen"},
{ name="Dmitriy Y. Anistratov"},
{ name="C. T. Kelley"},
{ name="Camille J. Palmer"},
{ name="Kyle E. Niemeyer"},
]
maintainers = [
{ name="Ilham Variansyah", email = "variansi@oregonstate.edu"},
{ name="Braxton Cuneo", email="bcuneo@seattleu.edu" },
{ name="Kayla Clements", email = "clemekay@oregonstate.edu"},
{ name="Joanna Piper Morgan", email = "morgajoa@oregonstate.edu"},
{ name="Kyle E. Niemeyer", email = "kyle.niemeyer@oregonstate.edu"},
]
description = "MC/DC (Monte Carlo Dynamic Code): a performant, scalable, and machine-portable Python-based Monte Carlo neutron transport package"
readme = "README.md"
requires-python = ">=3.9.1, <3.12"
license = {file = "LICENSE"}
keywords = ["Monte Carlo", "nuclear engineering", "neutron transport", "HPC", "GPU", "numba", "mpi4py"]
classifiers = [
"Programming Language :: Python :: 3",
'License :: OSI Approved :: BSD License',
'Intended Audience :: Science/Research',
'Typing :: Typed',
'Natural Language :: English',
'Operating System :: Unix',
'Operating System :: MacOS',
]
dependencies = [
"numba>=0.58.0",
"numpy",
"scipy",
"matplotlib",
"mpi4py>=3.1.5",
"pytest",
"h5py",
"colorama",
"black",
"sympy",
"pre-commit",
]
[project.optional-dependencies]
docs = ["sphinx==7.2.6", "furo", "sphinx_toolbox"]
[project.urls]
Repository = "https://github.com/CEMeNT-PSAAP/MCDC"
Homepage = "https://cement-psaap.github.io/"
Documentation = "https://mcdc.readthedocs.io/en/latest/"
Issues = "https://github.com/CEMeNT-PSAAP/MCDC/issues"