-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
66 lines (53 loc) · 1.94 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
from setuptools import setup, find_packages
import pathlib
# Define metadata
PACKAGE_NAME = "pylst"
VERSION = "0.0.2"
AUTHOR = "Azad Rasul"
AUTHOR_EMAIL = "[email protected]"
DESCRIPTION = "A Python package for processing and visualizing Landsat LST data."
URL = "https://github.com/pylst/lst"
LICENSE = "MIT"
# Set the current directory as the base path
here = pathlib.Path(__file__).parent.resolve()
# Read the contents of README.md for the long description
long_description = (here / "README.md").read_text(encoding="utf-8")
# Setup configuration
setup(
name=PACKAGE_NAME,
version=VERSION,
description=DESCRIPTION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
license=LICENSE,
# Specify the type of long description (Markdown)
long_description_content_type="text/markdown",
long_description=long_description,
# Project URL
url=URL,
# Find all packages in the project
packages=find_packages(),
# Dependencies required for the package
install_requires=["numpy>=1.0",
"pandas>=1.4.4",
"rasterio>=1.0.0",
"GDAL>=2.0.0",
"geemap>=0.30.4",
"ee>=0.2",
"opencv-python>=4.7.0.72",
"scikit-learn>=1.0.2",
"matplotlib>=3.5.2",
],
# Keywords associated with the package
keywords="Land Surface Temperature (LST), Image processing, Landsat, Remote Sensing, Thermal Satellite images",
# Classification for the pacckage
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3.9",
"Natural Language :: English",
],
# Python version required
python_requires=">=3.9",
)