forked from EverWinter23/graphene-gis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (44 loc) · 1.25 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
from setuptools import find_packages, setup
tests_require = [
"pytest>=5.1.2",
"pytest-cov==2.7.1",
"pytest-django>=3.5.1"
]
dev_requires = [
"black==19.3b0",
"flake8==3.7.8",
] + tests_require
with open("README.md", "r") as desc:
long_description = desc.read()
setup(
name="graphene-gis",
version="0.0.4",
description="GIS support for graphene-django",
long_description_content_type='text/markdown',
url="https://github.com/EverWinter23/graphene-gis",
long_description=long_description,
keywords="api graphql graphene geos gis",
packages=find_packages(exclude=["tests"]),
author="Rishabh Mehta",
author_email="[email protected]",
install_requires=[
"graphene==2.1.8",
"graphene-django==2.5.0",
"graphql-core==2.2.1",
"psycopg2==2.8.3"
],
setup_requires=["pytest-runner"],
tests_require=tests_require,
extras_require={
"test": tests_require,
"dev": dev_requires,
},
classifiers=(
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
),
include_package_data=True,
zip_safe=False,
platforms="any",
)