-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
41 lines (37 loc) · 1.04 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
"""stac-check setup.py
"""
from setuptools import find_packages, setup
__version__ = "1.4.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,
setup_requires=["setuptools"],
install_requires=[
"click>=8.0.0",
"requests>=2.19.1",
"jsonschema>=3.1.2",
"stac-validator>=3.4.0",
"PyYAML",
"python-dotenv",
],
extras_require={
"dev": [
"pytest",
"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.8",
tests_require=["pytest"],
)