forked from openmc-dev/openmc_mcnp_adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (37 loc) · 1.23 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "openmc_mcnp_adapter"
version = "0.1.0"
description = "Tool to convert MCNP input file to OpenMC classes/XML"
readme = "README.md"
authors = [
{ name = "Paul Romano", email = "[email protected]" },
]
license = { file = "LICENSE" }
requires-python = ">=3.7"
dependencies = [
"numpy",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Physics",
]
[project.urls]
"Bug Tracker" = "https://github.com/openmc-dev/openmc_mcnp_adapter/issues"
Discussions = "https://openmc.discourse.org"
"Source Code" = "https://github.com/openmc-dev/openmc_mcnp_adapter"
[project.scripts]
mcnp_to_openmc = "openmc_mcnp_adapter.openmc_conversion:mcnp_to_openmc"