-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
44 lines (39 loc) · 1.01 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
[build-system]
requires = [
"setuptools>=65.5.0",
"setuptools_scm[toml]>=7.0.5"
]
build-backend = "setuptools.build_meta"
[project]
name = "openmc_plasma_source"
dynamic = ["version"]
description = "Creates tokamak and ICF plasma sources for OpenMC"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
authors = [
{ name="Rémi Delaporte-Mathurin" },
]
requires-python = ">=3.9"
keywords = ["python", "neutron", "fusion", "source", "openmc", "energy", "tokamak"]
dependencies = [
"numpy>=1.9",
"matplotlib>=3.2.2",
"NeSST>=1.1.0"
]
[project.urls]
"Homepage" = "https://github.com/fusion-energy/openmc-plasma-source"
"Bug Tracker" = "https://github.com/fusion-energy/openmc-plasma-source/issues"
[tool.setuptools_scm]
write_to = "src/_version.py"
[project.optional-dependencies]
tests = [
"pytest>=5.4.3",
"hypothesis",
"NeSST>=1.1.0"
]
[tool.setuptools]
package-dir = {"" = "src"}