-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (45 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
50 lines (45 loc) · 1.29 KB
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
[build-system]
requires = ["setuptools >= 69.5.1", "setuptools_scm[toml]>=8.1.0"]
build-backend = "setuptools.build_meta"
[project]
name = "f4enix"
license = { file = "LICENSE.txt" }
dynamic = ["version"]
authors = [
{ name = "F4E neutronics team", email = "sc-radiationtransport@f4e.europa.eu" },
]
description = "API for Monte Carlo input and output parsing"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)",
"Operating System :: OS Independent",
]
dependencies = [
"numjuggler >= 2.42.37",
"pyvista >= 0.39.1",
"pandas",
"polars",
"numba",
"scipy",
"tqdm",
"python-docx",
"openpyxl",
"tables",
"endf",
"pypact >= 1.3.8",
"chardet < 7.0.0", # breaks numjuggler
]
[project.optional-dependencies]
tests = ["pytest", "pytest-cov", "nbformat", "nbconvert", "ipykernel"]
[project.urls]
Homepage = "https://github.com/fusion4energy"
Repository = "https://github.com/Fusion4Energy/F4Enix"
Documentation = "https://f4enix.readthedocs.io/en/latest/"
[tool.setuptools_scm]
write_to = "src/_version.py"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.package-data]
"f4enix" = ["**/*.xlsx", "**/*.txt", "**/*.csv"]