-
Notifications
You must be signed in to change notification settings - Fork 31
/
pyproject.toml
61 lines (54 loc) · 1.72 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
[build-system]
requires = ["setuptools >= 69.5.1", "setuptools_scm[toml]>=8.1.0"]
build-backend = "setuptools.build_meta"
[project]
name = "geouned"
license = {file = "LICENSE.txt"}
dynamic = ["version"]
authors = [
{ name="Juan-Pablo Catalan", email="[email protected]" },
{ name="Patrick Sauvan", email="[email protected]" },
]
maintainers = [
{ name="Patrick Sauvan", email="[email protected]" },
{ name="Juan-Pablo Catalan", email="[email protected]" },
{ name="Juan Garcia", email="[email protected]" },
{ name="Francisco Ogando", email="[email protected]" },
{ name="Javier Alguacil", email="[email protected]" },
]
description = "Conversion tool from CAD to CGS/CGS to CAD for Monte Carlo particle transport codes (OpenMC, Phits, Serpent, MCNP)"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["csg", "cad", "openmc", "serpent", "phits", "mcnp", "geometry"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)",
"Operating System :: OS Independent",
]
dependencies = [
"tqdm",
"numpy",
]
[project.urls]
Homepage = "https://github.com/GEOUNED-org"
Repository = "https://github.com/GEOUNED-org/GEOUNED"
Documentation = "https://geouned-org.github.io/GEOUNED/index.html"
[project.optional-dependencies]
tests = [
"pytest",
"black==24.4.2",
]
docs = [
"sphinx",
"pydata-sphinx-theme",
"sphinx_autodoc_typehints",
]
[project.scripts]
geouned_cadtocsg = "geouned.GEOUNED.scripts.geouned_cadtocsg:main"
geouned_csgtocad = "geouned.GEOReverse.scripts.geouned_csgtocad:main"
[tool.black]
line-length = 128
[tool.setuptools_scm]
write_to = "src/_version.py"
[tool.setuptools]
package-dir = {"" = "src"}