-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
29 lines (27 loc) · 967 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
from setuptools import setup
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
setup(
name='stac_cat_utils',
version='0.1.0',
description='Package of utility functions facilitating generation of STAC files from existing files and folders.',
url='https://github.com/SpaceApplications/stac-cat-utils',
author='Space Applications Services',
author_email='[email protected]',
long_description=long_description,
long_description_content_type='text/markdown',
packages=['stac_cat_utils', 'stac_cat_utils/slc'],
keywords='STAC, pystac, STAC generation',
python_requires='>=3.8',
license='BSD',
install_requires=[
'stactools==0.4.5',
'stactools-browse==0.1.7',
'stactools-landsat==0.3.0',
'stactools-sentinel1==0.5.3',
'stactools-sentinel2==0.4.0',
'pystac==1.7.2',
'rio_stac==0.7.0',
'lxml==4.9.2',
],
)