-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
52 lines (48 loc) · 997 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "flodym"
version = "0.1.0"
authors = [
{name = "Jakob Dürrwächter"},
{name = "Sally Dacie"},
{name = "Merlin Hosak"},
]
readme = "README.md"
requires-python = ">= 3.10"
dependencies = [
"matplotlib>=3.7.1",
"numpy>=1.25.0",
"scipy>=1.11.0",
"PyYAML>=6.0",
"pandas>=2.0.2",
"pickle4>=0.0.1",
"plotly>=5.18.0",
"pydantic>=2.8.2",
"openpyxl>=3.1.5",
]
[project.optional-dependencies]
examples = [
"jupyter>=1.1.1",
"nbformat>=5.10.4",
]
tests = [
"pytest>=8.3.2",
"polyfactory>=2.16.2",
]
docs = [
"sphinx>=7.4.0",
"sphinx-pydantic>=0.1.1",
"autodoc-pydantic>=2.2.0",
"sphinx-rtd-theme>=2.0.0",
"myst-parser>=4.0.0",
"nbsphinx>=0.9.6",
"nbsphinx-link>=1.3.1",
"jupyter>=1.1.1",
"jupytext>=1.16.4",
]
[tool.setuptools]
packages = ["flodym", "flodym.export"]
[tool.black]
line-length = 100