forked from graphql-python/graphene-django
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
69 lines (62 loc) · 1.91 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
64
65
66
67
68
69
from setuptools import find_packages, setup
import sys
import ast
import re
_version_re = re.compile(r"__version__\s+=\s+(.*)")
with open("graphene_django/__init__.py", "rb") as f:
version = str(
ast.literal_eval(_version_re.search(f.read().decode("utf-8")).group(1))
)
neomodel_require = [
"neomodel-next==3.3.0",
]
tests_require = [
"pytest>=3.6.3",
"pytest-cov",
"coveralls",
"mock",
"pytz",
"django-filter<2;python_version<'3'",
"pytest-django>=3.3.2",
]
dev_requires = [
"black==19.3b0",
"flake8==3.7.7",
] + tests_require
setup(
name="graphene-neo4j",
version=version,
description="Graphene Django-Neo4J (neomodel) integration",
long_description=open("README.rst").read(),
url="https://github.com/MardanovTimur/graphene-neo4j",
author="Syrus Akbary; Mardanov Timur",
author_email="timurmardanov97@gmail.com",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: PyPy",
],
keywords="api graphql protocol rest relay graphene",
packages=find_packages(exclude=["tests"]),
install_requires=[
"six>=1.10.0",
# "graphene>=2.1.3,<3",
"graphql-core>=2.1.0,<3",
"Django>=1.11",
"singledispatch>=3.4.0.3",
"promise>=2.1",
"lazy-import==0.2.2",
"neomodel-next>=3.3.0",
# "django-filter @ git+https://github.com/MardanovTimur/django-filter@neomodel#egg=foo-9999",
# "graphene @ git+https://github.com/MardanovTimur/graphene@master#eqq-123",
],
setup_requires=["pytest-runner"],
tests_require=tests_require,
extras_require={"test": tests_require},
include_package_data=True,
zip_safe=False,
platforms="any",
)