2016-09-18 02:29:00 +03:00
|
|
|
from setuptools import find_packages, setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='graphene-django',
|
2016-11-23 13:43:58 +03:00
|
|
|
version='1.2.0',
|
2016-09-18 02:29:00 +03:00
|
|
|
|
|
|
|
description='Graphene Django integration',
|
2016-09-18 04:49:03 +03:00
|
|
|
long_description=open('README.rst').read(),
|
2016-09-18 02:29:00 +03:00
|
|
|
|
|
|
|
url='https://github.com/graphql-python/graphene-django',
|
|
|
|
|
|
|
|
author='Syrus Akbary',
|
|
|
|
author_email='me@syrusakbary.com',
|
|
|
|
|
|
|
|
license='MIT',
|
|
|
|
|
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 3 - Alpha',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'Topic :: Software Development :: Libraries',
|
|
|
|
'Programming Language :: Python :: 2',
|
|
|
|
'Programming Language :: Python :: 2.7',
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Programming Language :: Python :: 3.3',
|
|
|
|
'Programming Language :: Python :: 3.4',
|
|
|
|
'Programming Language :: Python :: 3.5',
|
|
|
|
'Programming Language :: Python :: Implementation :: PyPy',
|
|
|
|
],
|
|
|
|
|
|
|
|
keywords='api graphql protocol rest relay graphene',
|
|
|
|
|
|
|
|
packages=find_packages(exclude=['tests']),
|
|
|
|
|
|
|
|
install_requires=[
|
|
|
|
'six>=1.10.0',
|
2016-11-28 22:25:41 +03:00
|
|
|
'graphene>=1.1.2',
|
2016-09-18 02:29:00 +03:00
|
|
|
'Django>=1.6.0',
|
|
|
|
'iso8601',
|
|
|
|
'singledispatch>=3.4.0.3',
|
|
|
|
],
|
2016-11-12 20:27:25 +03:00
|
|
|
setup_requires=[
|
|
|
|
'pytest-runner',
|
|
|
|
],
|
2016-09-18 02:29:00 +03:00
|
|
|
tests_require=[
|
2016-11-23 13:15:05 +03:00
|
|
|
'django-filter>=1.0.0',
|
2016-09-18 03:14:07 +03:00
|
|
|
'pytest',
|
2016-09-18 04:45:08 +03:00
|
|
|
'pytest-django==2.9.1',
|
2016-09-18 02:29:00 +03:00
|
|
|
'mock',
|
|
|
|
# Required for Django postgres fields testing
|
|
|
|
'psycopg2',
|
|
|
|
],
|
2016-09-20 09:04:07 +03:00
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=False,
|
|
|
|
platforms='any',
|
2016-09-18 02:29:00 +03:00
|
|
|
)
|