-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 839 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (31 loc) · 839 Bytes
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
[build-system]
requires = ["chronver", "setuptools>=66"]
build-backend = "setuptools.build_meta"
[project]
authors = [
{ name = "RadiaSoft LLC", email = "pip@radiasoft.net" },
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python",
"Topic :: Utilities",
]
dependencies = [
"pykern",
]
description = "CORTEX openmc simulations"
dynamic = ["version"]
name = "cortex"
readme = "README.md"
[project.scripts]
cortex = "cortex.cortex_console:main"
[project.urls]
Homepage = "https://git.radiasoft.org/cortex"
[tool.setuptools.package-data]
cortex = ["package_data/**"]
[tool.setuptools.packages.find]
include = ["cortex*"]