-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (37 loc) · 1.16 KB
/
setup.py
File metadata and controls
38 lines (37 loc) · 1.16 KB
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
from setuptools import setup, find_packages
setup(
name="ds_download",
version="0.1.4",
description="A package for downloading and processing Sentinel-2 data",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author="Your Name",
author_email="your-email@example.com",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.10',
install_requires=[
"geojson==2.5.0",
"google-api-core==2.10.1",
"google-auth==2.11.1",
"google-cloud-core==2.3.2",
"google-cloud-storage==2.5.0",
"google-crc32c==1.5.0",
"google-resumable-media==2.3.3",
"googleapis-common-protos==1.56.4",
"minio==7.2.8",
"pymongo==4.8.0",
"requests==2.32.3",
"rasterio==1.3.11",
"python-dotenv==1.0.1",
"geomet==1.1.0",
"python-dateutil==2.9.0",
],
include_package_data=True,
url="https://github.com/KhaosResearch/sentinel2-download",
license="MIT",
)