-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
75 lines (69 loc) · 2.31 KB
/
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
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
from setuptools import setup, find_packages
PROJNAME = "uavsar-lidar-ml-project"
DESCRIPTION = "A project that uses NASA JPL UAVSAR data to predict total snow depth."
with open("README.md") as f:
LONG_DESCRIPTION = f.read()
LONG_DESCRIPTION_CONTENT_TYPE = "text/markdown"
MAINTAINER = "Ibrahim Olalekan Alabi"
MAINTAINER_EMAIL = "[email protected]"
URL = "https://github.com/Ibrahim-Ola/uavsar-lidar-project.git"
PROJECT_URLS = {
"Bug Tracker": "https://github.com/cryogars/uavsar-lidar-ml-project/issues",
"Documentation": "https://github.com/cryogars/uavsar-lidar-ml-project/blob/main/README.md",
"Source Code": "https://github.com/cryogars/uavsar-lidar-ml-project",
}
VERSION = "0.0.1"
LICENSE = "MIT"
PYTHON_REQUIRES = ">=3.9"
def setup_package():
metadata = dict(
name=PROJNAME,
version=VERSION,
author=MAINTAINER,
author_email=MAINTAINER_EMAIL,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type=LONG_DESCRIPTION_CONTENT_TYPE,
url=URL,
project_urls=PROJECT_URLS,
license=LICENSE,
python_requires=PYTHON_REQUIRES,
packages=find_packages(),
install_requires=[
"numpy==1.24.4",
"pandas==2.1.4",
"matplotlib==3.8.0",
"seaborn==0.13.1",
"shap==0.46.0",
"scikit-learn==1.3.2",
"xgboost==2.1.0",
"torch==2.0.1",
"geopandas==0.14.0",
"scipy==1.11.2"
],
classifiers=[
"Development Status :: Mature",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Hydrology",
],
keywords=[
"UAVSAR",
"LIDAR",
"NISAR",
"Snow",
"Snow Depth",
"Snow Water Equivalent",
"Machine Learning",
"Remote Sensing",
],
)
setup(**metadata)
if __name__ == "__main__":
setup_package()
print("Setup Complete.")