-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
57 lines (52 loc) · 1.57 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
57
"""stac_fastapi: mongodb module."""
from setuptools import find_namespace_packages, setup
with open("README.md") as f:
desc = f.read()
install_requires = [
"stac-fastapi.core==3.0.0a0",
"motor==3.3.2",
"pymongo==4.6.2",
"uvicorn",
"starlette",
"typing_extensions==4.8.0",
"stac-pydantic==3.0.0",
]
extra_reqs = {
"dev": [
"pytest",
"pytest-cov",
"pytest-asyncio",
"pre-commit",
"requests",
"ciso8601",
"httpx",
],
"docs": ["mkdocs", "mkdocs-material", "pdocs"],
"server": ["uvicorn[standard]==0.19.0"],
}
setup(
name="stac-fastapi.mongo",
version="3.2.1",
description="Mongodb stac-fastapi backend.",
long_description=desc,
long_description_content_type="text/markdown",
python_requires=">=3.8",
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
],
url="https://github.com/Healy-Hyperspatial/stac-fastapi-mongo",
license="MIT",
packages=find_namespace_packages(),
zip_safe=False,
install_requires=install_requires,
extras_require=extra_reqs,
entry_points={"console_scripts": ["stac-fastapi-mongo=stac_fastapi.mongo.app:run"]},
)