-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (40 loc) · 944 Bytes
/
Copy pathsetup.py
File metadata and controls
41 lines (40 loc) · 944 Bytes
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
from setuptools import find_packages, setup
setup(
name="city_metrix",
version="0.3.0",
description="Module to calculate various metrics on cities.",
packages=find_packages(),
author="Justin Terry, Kenn Cartier",
license="MIT",
install_requires=[
"earthengine-api",
"geocube",
"odc-stac",
"geemap>=0.35.2",
"setuptools<81",
"pystac-client",
"xarray",
"xarray-spatial",
"xee",
"rioxarray",
"utm",
"osmnx>=2.0.1",
"geopandas",
"xarray",
"s3fs",
"dask[complete]",
"boto3",
"cdsapi",
"scikit-image>=0.25.2",
"cfgrib",
"scipy",
"numpy",
"overturemaps>=0.18",
"ipython",
"pyarrow>=19.0.1",
"pvlib",
],
package_data={
'city_metrix': ['ut_globus_city_handler/global_ut_globus_cities.gpkg']
},
)