-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
36 lines (35 loc) · 822 Bytes
/
setup.py
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
from setuptools import find_packages, setup
setup(
name="biomassrecovery",
version="0.0.3",
author="Simon V. Mathis (AI4ER CDT, University of Cambridge)",
author_email="[email protected]",
description="A short description of the project.",
url="url-to-github-page",
packages=find_packages(),
test_suite="src.tests.test_all.suite",
install_requires=[
"geoalchemy2",
"geopandas",
"h5py",
"hvplot",
"numpy",
"pandas",
"psutil",
"psycopg2",
"pyarrow",
"pylr2",
"pyproj",
"pyspark",
"python-dotenv",
"requests",
"rioxarray",
"shapely",
"sqlalchemy",
"statsmodels",
"tqdm",
"utm",
"xarray",
"urllib3<2.0",
]
)