forked from CEMeNT-PSAAP/MCDC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
71 lines (65 loc) · 2.12 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mcdc"
version = "0.9.1"
authors = [
{ name="Ilham Variansyah", email="[email protected]" },
{ name="Sam Pasmann", email="[email protected]" },
{ name="Joanna Morgan", email="[email protected]" },
{ name="Kayla Clements", email="[email protected]" },
{ name="Braxton Cuneo", email="[email protected]" },
{ name="Charles Goodman"},
{ 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 = "[email protected]"},
{ name="Kayla Clements", email = "[email protected]"},
{ name="Joanna Piper Morgan", email = "[email protected]"},
{ name="Kyle E. Niemeyer", email = "[email protected]"},
]
description = "Monte Carlo / Dynamic Code, a pure python high performance Monte Carlo neutronics package"
readme = "README.md"
requires-python = ">=3.9.1"
license = {file = "LICENSE"}
keywords = ["Monte Carlo", "Nuclear", "GPU", "numba", "mpi4py", "neutron transport", "neutronics", "HPC"]
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",
]
[project.optional-dependencies]
docs = ["sphinx==7.2.6", "furo", "sphinx_toolbox"]
viz = ["ngsolve", "distinctipy"]
[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"