-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (57 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
62 lines (57 loc) · 1.34 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "heiplanet-db"
license = {text = "MIT License"}
readme = "README.md"
description = "Database for hei-planet project"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
authors = [
{ name="Tuyen Le", email="ssc@iwr.uni-heidelberg.de" },
{ name="Inga Ulusoy", email="ssc@iwr.uni-heidelberg.de" },
{ name="Edwin Carreño", email="ssc@iwr.uni-heidelberg.de" },
]
version = "0.0.1"
dependencies = [
"xarray",
"netcdf4",
"jupyter",
"matplotlib",
"tqdm",
"geopandas",
"sqlalchemy",
"geoalchemy2",
"psycopg2-binary",
"dask[complete]",
"testcontainers",
"pooch",
"fastapi[standard]",
"uvicorn",
"scipy",
]
[project.optional-dependencies]
dev = [
"pre-commit",
"pytest",
"ruff",
"mkdocs-material",
"mkdocs-include-markdown-plugin",
"mkdocs-glightbox",
"mkdocs-jupyter",
"mkdocs-gen-files",
"mkdocs-literate-nav",
"mkdocs-section-index",
"mkdocs-minify-plugin",
"mkdocstrings-python",
]
[project.urls]
Homepage = "https://github.com/ssciwr/heiplanet-db"
Issues = "https://github.com/ssciwr/heiplanet-db/issues"
[tool.setuptools]
packages = ["heiplanet_db","heiplanet_db.data"]