forked from stac-utils/stac-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (40 loc) · 1.26 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.3.1"
with open("README.md", "r") as fh:
long_description = fh.read()
extra_reqs = {
"test": ["pytest"],
}
setup(
name="stac_validator",
version=__version__,
author="James Banting, 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.7",
"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",
download_url="https://github.com/stac-utils/stac-validator/archive/v2.5.0.tar.gz",
install_requires=[
"requests>=2.19.1",
"jsonschema>=3.2.0",
"click>=8.0.0",
"types-setuptools",
],
packages=["stac_validator"],
entry_points={
"console_scripts": ["stac-validator = stac_validator.stac_validator:main"]
},
python_requires=">=3.7",
tests_require=["pytest"],
)