-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
53 lines (48 loc) · 1.22 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
[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="[email protected]" },
]
description = "API for Monte Carlo input and output parsing"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)",
"Operating System :: OS Independent",
]
dependencies = [
"numpy <= 1.26.4",
"numjuggler",
"pyvista >= 0.39.1",
"pandas",
"numba",
"scipy",
"tqdm",
"python-docx",
"openpyxl",
"tables"
]
[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"]