forked from stac-utils/pystac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (49 loc) · 1.53 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
import os
from imp import load_source
from setuptools import setup, find_packages
from glob import glob
__version__ = load_source('pystac.version', 'pystac/version.py').__version__
from os.path import (
basename,
splitext
)
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md')) as readme_file:
readme = readme_file.read()
setup(
name='pystac',
version=__version__,
description=("Python library for working with Spatiotemporal Asset Catalog (STAC)."),
long_description=readme,
long_description_content_type="text/markdown",
author="Azavea",
author_email='[email protected]',
url='https://github.com/azavea/pystac.git',
packages=find_packages(),
py_modules=[splitext(basename(path))[0] for path in glob('pystac/*.py')],
include_package_data=False,
install_requires=["python-dateutil>=2.7.0"],
extras_require={
"validation": ["jsonschema==3.2.0"]
},
license="Apache Software License 2.0",
zip_safe=False,
keywords=[
'pystac',
'imagery',
'raster',
'catalog',
'STAC'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
test_suite='tests'
)