forked from stac-utils/pystac-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
67 lines (62 loc) · 2.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import os
from imp import load_source
from setuptools import setup, find_packages
from glob import glob
__version__ = load_source('pystac_client.version', 'pystac_client/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-client',
version=__version__,
description=("Python library for working with Spatiotemporal Asset Catalog (STAC)."),
long_description=readme,
long_description_content_type="text/markdown",
author="Jon Duckworth, Matthew Hanson",
author_email='[email protected], [email protected]',
url='https://github.com/stac-utils/pystac-client.git',
packages=find_packages(exclude=("tests",)),
py_modules=[splitext(basename(path))[0] for path in glob('pystac_client/*.py')],
include_package_data=False,
python_requires=">=3.7",
install_requires=[
"requests>=2.25",
"pystac~=1.2.0"
],
extras_require={
"validation": ["jsonschema==3.2.0"]
},
license="Apache Software License 2.0",
zip_safe=False,
keywords=[
'pystac',
'imagery',
'raster',
'catalog',
'STAC'
],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
"Natural Language :: English",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"
],
test_suite='tests',
entry_points={
'console_scripts': ['stac-client=pystac_client.cli:cli']
}
)