Include templates in package. Updated dev version

This commit is contained in:
Syrus Akbary 2016-09-19 23:04:07 -07:00
parent 9b46fad919
commit d05407f6a5
2 changed files with 6 additions and 1 deletions

2
MANIFEST.in Normal file
View File

@ -0,0 +1,2 @@
include README.md
recursive-include graphene_django/templates *

View File

@ -2,7 +2,7 @@ from setuptools import find_packages, setup
setup(
name='graphene-django',
version='1.0.dev20160919000001',
version='1.0.dev20160919000002',
description='Graphene Django integration',
long_description=open('README.rst').read(),
@ -46,4 +46,7 @@ setup(
# Required for Django postgres fields testing
'psycopg2',
],
include_package_data=True,
zip_safe=False,
platforms='any',
)