forked from stac-utils/stac-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (41 loc) · 1.24 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
#!/usr/bin/env python
from setuptools import setup
__version__ = "3.4.0"
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="stac_validator",
version=__version__,
author="James Banting, Jonathan Healy",
author_email="jonathan.d.healy@gmail.com",
description="A package to validate STAC files",
license="Apache-2.0",
classifiers=[
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: GIS",
],
keywords="STAC validation raster",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/stac-utils/stac-validator",
install_requires=[
"requests>=2.19.1",
"jsonschema>=3.2.0",
"click>=8.0.0",
],
extras_require={
"dev": [
"pytest",
"types-setuptools",
],
},
packages=["stac_validator"],
entry_points={
"console_scripts": ["stac-validator = stac_validator.stac_validator:main"]
},
python_requires=">=3.8",
tests_require=["pytest"],
)