-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
68 lines (59 loc) · 1.54 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
65
66
67
68
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "emiproc"
description = "Emission Processing Tool"
authors = [
{name = "Lionel Constantin", email="[email protected]"},
{name = "Michael Jähn"},
{name = "Gerrit Kuhlmann"},
{name = "Qing Mu"},
{name = "Jean-Matthieu Haussaire"},
{name = "David Ochsner"},
{name = "Katherine Osterried"},
{name = "Valentin Clément"},
{name = "Joel Thanwerdas"},
{name = "Corina Keller"},
{name = "Erik Koene"},
{name = "Alessandro Bigi"},
{name = "Michael Steiner"},
{name = "Dominik Brunner", email="[email protected]"},
]
dependencies = [
"geos",
"numpy",
"pandas",
"geopandas",
"netCDF4",
"scipy",
"shapely",
"xarray>=2023.10",
"rasterio",
"pyogrio",
"pyyaml",
"fiona",
]
license = {text = "BSD-3-Clause"}
readme = "README.md"
requires-python = ">=3.9"
keywords = ["emission", "processing", "inventory", "cosmo", "icon-art"]
classifiers = [
"Programming Language :: Python :: 3",
]
dynamic = ["version"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.setuptools.packages.find]
include = ["emiproc"] # package names should match these glob patterns (["*"] by default)
[tool.setuptools_scm]
write_to = "emiproc/_version.py"
[project.optional-dependencies]
doc = [
"sphinx",
"furo",
"enum-tools",
"sphinx_toolbox",
"nbsphinx",
]
dev = ["black"]