Improved graphene dependency

This commit is contained in:
Syrus Akbary 2015-10-07 21:29:25 -07:00
parent d7f4804f56
commit 0c8fa40b62

View File

@ -24,7 +24,7 @@ class PyTest(TestCommand):
setup( setup(
name='graphene', name='graphene',
version='0.1.1', version='0.1.2',
description='Graphene: Python DSL for GraphQL', description='Graphene: Python DSL for GraphQL',
long_description=open('README.rst').read(), long_description=open('README.rst').read(),
@ -57,13 +57,15 @@ setup(
'six', 'six',
'blinker', 'blinker',
'graphql-core==0.1a0', 'graphql-core==0.1a0',
'graphql-relay==0.1.3' 'graphql-relay==0.1.4'
],
tests_require=[
'pytest>=2.7.2',
'pytest-django',
], ],
tests_require=['pytest>=2.7.2'],
extras_require={ extras_require={
'django': [ 'django': [
'Django>=1.8.0,<1.9', 'Django>=1.6.0,<1.9',
'pytest-django',
'singledispatch>=3.4.0.3', 'singledispatch>=3.4.0.3',
], ],
}, },