forked from DerkNiessink/NeutroWater
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (55 loc) · 1.42 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
62
63
[project]
name = "NeutroWater"
version = "0.0.3"
authors = [
{name = "DerkNiessink, email = [email protected]"}
]
description = "Monte Carlo simulation of neutron moderation"
readme = "README.md"
packages = [{ include = "neutrowater", from="src" }]
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/DerkNiessink/neutrowater"
Issues = "https://github.com/DerkNiessink/neutrowater/issues"
[tool.poetry]
name = "NeutroWater"
version = "0.0.3"
authors = ["DerkNiessink <[email protected]>"]
description = "Monte Carlo simulation of neutron moderation"
readme = "README.md"
packages = [
{ include = "neutrowater", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.10"
scienceplots = "^2.1.1"
numpy = "^1.26.4"
matplotlib = "^3.8.2"
pytest = "^8.0.0"
ipykernel = "^6.29.1"
pandas = "^2.2.0"
scipy = "^1.12.0"
seaborn = "^0.13.2"
tqdm = "^4.66.2"
ruff = "^0.2.1"
numba = "^0.59.0"
brokenaxes = "^0.6.0"
ipywidgets = "^8.1.2"
mkdocs = "^1.6.0"
pymdown-extensions = "^10.8"
mkdocs-glightbox = "^0.3.7"
build = "^1.2.1"
mkdocstrings = {extras = ["crystal", "python"], version = "^0.24.3"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
filterwarnings = [
"error",
"ignore::DeprecationWarning",
]