-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (30 loc) · 930 Bytes
/
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "pynsn"
authors = [{name = "Oliver Lindemann", email = "lindemann@essb.eur.nl"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: MIT License"]
dynamic = ["version", "description"]
requires-python = ">=3.10"
dependencies = ["numpy>=2.1.3",
"pandas>=2.2",
"scipy>=1.14",
"matplotlib>=3.9",
"shapely>=2.0",
"svgwrite>=1.4",
"Pillow>=11.0"]
[project.optional-dependencies]
pygame = ["pygame>=2.5"]
#expyriment = ["expyriment>=0.10"]
test = [
"pytest >=2.7.3"
]
doc = ["Sphinx>=5.1",
"sphinx-autodoc-typehints",
"sphinx-rtd-theme"]
[project.urls]
Documentation = "https://github.com/lindemann09/PyNSN"
Source = "https://github.com/lindemann09/PyNSN"