-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (49 loc) · 1.21 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "sys4enca"
authors = [
{name = "Thomas Danckaert", email = "[email protected]"},
{name = "Marcel Buchhorn", email = "[email protected]"},
{name = "Bruno Smets", email = "[email protected]"},
{name = "Catherine Van Den Hoof", email = "[email protected]"}
]
description = "Natural Capital Accounting package"
readme = "README.rst"
requires-python = ">=3.9"
keywords = ["ecosystem", "accounting", "SEEA"]
license = {text = "BSD-3-Clause"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
'GDAL>=3.1.0',
'pandas',
'matplotlib',
'netCDF4',
'numpy',
'geopandas>=0.9',
'rasterio',
'scipy',
'scikit-learn',
'openpyxl',
'Rtree',
'shapely>=2.0.0',
'pyyaml'
]
dynamic = ["version"]
[project.scripts]
enca = "enca.__main__:main"
bring2aoi = "enca.tools.bring2aoi:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.package-data]
enca = ["*.mo"]
[tool.setuptools_scm]
[tool.autopep8]
max_line_length = 120
ignore = "E501,W6" # or ["E501", "W6"]
in-place = true
recursive = true
aggressive = 3