-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (59 loc) · 1.74 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
[project]
name = "weatherDB"
dynamic = ["version"]
description = "This is a package to work with and to create the Weather Database which handles, checks, fills and corrects DWD Weather Station data."
readme = "README.md"
authors = [
{ name = "Max Schmit", email = "[email protected]" }
]
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Hydrology",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Intended Audience :: Science/Research",
"Natural Language :: English"
]
dependencies = [
"geopandas",
"shapely>=2",
"pandas",
"numpy",
"progressbar2",
"rasterio",
"sqlalchemy>2.0",
"psycopg2-binary",
"GeoAlchemy2",
"alembic",
"requests",
"keyring",
"keyrings.alt ; sys_platform == 'linux'",
"rasterstats",
"click"
]
license = { file = "LICENSE" }
requires-python = ">= 3.8, < 3.12"
[project.scripts]
weatherDB = "weatherDB.cli:cli"
[project.urls]
Homepage = "https://gitlab.uni-freiburg.de/hydrology/weatherDB/"
Issues = "https://gitlab.uni-freiburg.de/hydrology/weatherDB/-/issues"
Documentation = "https://weatherdb.readthedocs.io/latest/"
[project.optional-dependencies]
optionals = [
"coloredlogs",
"colorama"
]
[build-system]
requires = [
"build",
"setuptools>=42",
"wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "weatherDB.__version__"}
[tool.setuptools.packages]
find = {} # Scan the project directory with the default parameters