forked from stac-utils/stac-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (34 loc) · 980 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
30
31
32
33
34
35
36
37
"""stac-check setup.py
"""
from setuptools import setup, find_packages
__version__ = "1.2.0"
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="stac_check",
version=__version__,
description="Linting and validation tool for STAC assets",
url="https://github.com/stac-utils/stac-check",
packages=find_packages(exclude=("tests",)),
include_package_data=True,
install_requires=[
"click>=8.0.0",
"requests>=2.19.1",
"jsonschema>=3.1.2b0",
"pytest",
"stac-validator>=3.0.0",
"PyYAML",
"python-dotenv",
"types-setuptools",
],
entry_points={
'console_scripts': ['stac-check=stac_check.cli:main']
},
author="Jonathan Healy",
author_email="[email protected]",
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.7",
tests_require=["pytest"]
)