-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (41 loc) · 1.08 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
from setuptools import setup, find_packages
import codecs
import os
DESCRIPTION = 'Spatiotemporal data processing for the STELAR project'
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
LONG_DESCRIPTION = "\\n" + fh.read()
setup(
name='stelar_spatiotemporal',
version='{{VERSION_PLACEHOLDER}}',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author="Jens d'Hondt",
author_email="j.e.d.hondt@tue.nl",
packages=find_packages(),
install_requires=[
"pystac",
"pystac_client",
"shapely",
"opencv-python",
"numpy",
"sentinelhub",
"pandas",
"rasterio",
"geopandas>=0.8.1",
"decorator",
"scikit-image",
"fs",
"fs-s3fs",
"s3fs",
"tqdm",
"boto3",
"matplotlib",
"fiona"
],
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)