forked from stac-utils/stac-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (47 loc) · 1.51 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
#!/usr/bin/env python
import os.path
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
req_path = os.path.join(os.path.abspath(os.path.dirname(__file__)), "requirements.txt")
__version__ = '1.0.1'
with open("README.md", "r") as fh:
long_description = fh.read()
with open(req_path) as f:
requires = f.read().splitlines()
extra_reqs = {
"test": ["pytest"],
}
setup(
name="stac_validator",
version=__version__,
author="James Banting, Darren Wiens, Jonathan Healy",
author_email="[email protected]",
description="A package to validate STAC files",
license="MIT",
classifiers=[
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering :: GIS",
],
keywords="STAC validation raster",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/sparkgeo/stac-validator",
download_url="https://github.com/sparkgeo/stac-validator/archive/v1.0.1.tar.gz",
install_requires=[
'requests',
'pytest',
'pytest-mypy',
'pytest-cov',
'docopt',
'jsonschema',
'pystac',
],
packages=["stac_validator"],
entry_points={"console_scripts": ["stac_validator = stac_validator.stac_validator:main"]},
tests_require=["pytest"],
)