-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
74 lines (68 loc) · 1.78 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
69
70
71
72
73
74
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "cerf"
description = "An open-source geospatial Python package for assessing and analyzing future electricity technology capacity expansion feasibility."
readme = "README.md"
version = "2.4.0"
requires-python = ">=3.9"
license = {file = "LICENSE"}
authors = [
{name = "Chris Vernon", email = "[email protected]"},
{name = "Kendall Mongird", email = "[email protected]"},
{name = "Nino Zuljevic", email = "[email protected]"},
]
maintainers = [
{name = "Chris Vernon", email = "[email protected]"},
{name = "Kendall Mongird", email = "[email protected]"},
]
dependencies = [
'numpy>=1.19.4',
'scipy>=1.12',
'pyarrow>=17.0.0',
'pandas>=1.1.4',
'rasterio>=1.2.3',
'rioxarray>=0.15',
'PyYAML>=5.4.1',
'requests>=2.25.1',
'joblib>=1.0.1',
'matplotlib>=3.3.3',
'seaborn>=0.11.1',
'fiona>=1.8.19',
'pyproj>=3.0.1',
'rtree>=0.9.7',
'shapely>=1.7',
'geopandas>=0.9.0',
]
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.optional-dependencies]
test = [
"pytest>=6.0",
"pytest-cov>=2.12.1",
]
docs = [
"setuptools>=57.0.0",
"build>=0.5.1",
"ipykernel>=6.15.1",
"autodoc>=0.5.0",
"nbsphinx~=0.8.6",
"sphinx~=7.2.6",
"sphinx-design~=0.5.0",
"sphinx-rtd-theme~=2.0.0",
"sphinx-mathjax-offline~=0.0.2",
"sphinx-panels>=0.6.0",
]
deploy = [
"twine>=4.0.1",
]
[project.urls]
Repository = "https://github.com/IMMM-SFA/cerf"
Documentation = "https://immm-sfa.github.io/cerf"
[tool.hatch.build]
packages = ["cerf"] # set importable package name to "cerf"
include = ["cerf"]