forked from stac-utils/pystac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (49 loc) · 1.82 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
import os
from setuptools import setup, find_packages
from glob import glob
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",
description=(
"Python library for working with Spatiotemporal Asset Catalog (STAC)."
),
long_description=readme,
long_description_content_type="text/markdown",
author="stac-utils",
author_email="[email protected]",
url="https://github.com/stac-utils/pystac",
packages=find_packages(exclude=["tests*"]),
package_data={"": ["py.typed"]},
py_modules=[splitext(basename(path))[0] for path in glob("pystac/*.py")],
python_requires=">=3.7",
install_requires=[
"python-dateutil>=2.7.0",
'typing_extensions >= 3.7; python_version < "3.8"',
],
extras_require={"validation": ["jsonschema>=3.0"], "orjson": ["orjson>=3.5"]},
license="Apache Software License 2.0",
license_files=["LICENSE"],
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.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
project_urls={
"Tracker": "https://github.com/stac-utils/pystac/issues",
"Documentation": "https://pystac.readthedocs.io/en/latest/",
"GitHub Discussions": (
"https://github.com/radiantearth/stac-spec/discussions/categories/pystac"
),
},
test_suite="tests",
)