-
Notifications
You must be signed in to change notification settings - Fork 150
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (86 loc) · 1.81 KB
/
pyproject.toml
File metadata and controls
91 lines (86 loc) · 1.81 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[build-system]
requires = ["setuptools >= 64", "setuptools_scm >= 8"]
build-backend = "setuptools.build_meta"
[project]
name = "climada"
version = "6.1.0"
description = "Framework for climate risk assessment and adaptation option appraisal"
readme = "README.md"
requires-python = ">=3.10,<3.13"
license = { text = "GNU General Public License v3 (GPLv3)" }
authors = [
{ name = "ETH", email = "climada-info@sympa.ethz.ch" }
]
keywords = ["climate", "adaptation"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Mathematics"
]
dependencies = [
"bayesian-optimization",
"bottleneck",
"cartopy",
"cfgrib",
"contextily",
"dask",
"deprecation",
"fiona",
"gdal",
"geopandas",
"h5py",
"haversine",
"matplotlib",
"netcdf4",
"numba",
"openpyxl",
"overpy",
"pandas",
"pathos",
"peewee",
"pillow",
"pint",
"pyarrow",
"pycountry",
"pyproj",
"rasterio",
"salib",
"scikit-learn",
"seaborn",
"sparse",
"statsmodels",
"tables",
"tabulate",
"tqdm",
"xarray",
"xlrd",
"xlsxwriter"
]
[project.optional-dependencies]
doc = [
"ipython",
"myst-nb",
"readthedocs-sphinx-ext>=2.2",
"sphinx",
"sphinx-book-theme",
"sphinx-markdown-tables",
"sphinx-design",
"sphinx-mdinclude"
]
dev = [
"ipython",
"mccabe>=0.6",
"pylint>=3.0",
"pytest",
"pytest-cov",
"pytest-subtests",
"pre-commit"
]
[project.urls]
Homepage = "https://github.com/CLIMADA-project/climada_python"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["climada*"]