-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
63 lines (58 loc) · 1.93 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
58
59
60
61
62
63
from setuptools import setup, find_packages
from rest_framework_mvt import VERSION
def readme():
# pylint: disable=invalid-name
with open("README.md") as f:
return f.read()
setup(
author="Corteva Data Engineering",
author_email="DL-Delta-Devs@corteva.com",
classifiers=[
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Database",
"Topic :: Scientific/Engineering :: GIS",
],
description="""
A Django REST Framework extension for creating views that serialize model data to Google Protobuf encoded Map Box Vector Tiles via Postgres.
""",
include_package_data=True,
install_requires=[
"coreapi>=2.3",
"django>=2.2.9",
"djangorestframework>=3.9",
"djangorestframework-gis>=0.14",
"django-filter>=2.1.0",
],
keywords="mvt,django,restframework,mapbox,vector,protobuf,tile,postgres",
long_description=readme(),
long_description_content_type="text/markdown",
name="djangorestframework-mvt",
packages=find_packages(include=["rest_framework_mvt*"]),
extras_require={
"dev": [
"black",
"coveralls",
"mock",
"pylint",
"pytest",
"pytest-cov",
"sphinx",
"sphinx_rtd_theme",
]
},
url="https://github.com/corteva/djangorestframework-mvt",
version=VERSION,
zip_safe=False,
project_urls={
"Documentation": "https://corteva.github.io/djangorestframework-mvt",
"Source": "https://github.com/corteva/djangorestframework-mvt",
},
)