forked from Deltares/pyflwdir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (56 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
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = ["flit_core >=3.4,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "pyflwdir"
authors = [{name = "Dirk Eilander", email = "[email protected]"}]
readme = "README.rst"
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: MIT License"]
dynamic = ["version", "description"]
dependencies = [
"affine",
"numba>=0.54",
"numpy",
"scipy",
]
requires-python = ">=3.9"
[project.urls]
Home = "https://github.com/Deltares/pyflwdir"
Documentation = "https://deltares.github.io/pyflwdir"
[project.optional-dependencies]
test = [
"black[jupyter]",
"pre-commit",
"pytest>=2.7.3",
"pytest-cov",
]
doc = [
"nbsphinx",
"pydata-sphinx-theme",
"sphinx",
"sphinx_design",
]
examples = [
"cartopy>=0.20",
"descartes",
"geopandas>0.8",
"jupyter",
"matplotlib",
"rasterio",
]
full = ["pyflwdir[test, doc, examples]"]
[tool.black]
line-length = 88
target-version = ['py39']
[tool.flit.sdist]
include = ["pyflwdir"]
exclude = ["docs", "notebooks", "envs", "tests", "binder", ".github"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.make_env]
channels = ["conda-forge"]
deps_not_in_conda = [
"sphinx_design",
"black[jupyter]",
]