We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c835ef commit 83b8a92Copy full SHA for 83b8a92
MANIFEST.in
@@ -0,0 +1,3 @@
1
+include README.md
2
+recursive-include graphql_flask/static *
3
+recursive-include graphql_flask/templates *
setup.py
@@ -25,9 +25,11 @@
25
'Programming Language :: Python :: Implementation :: PyPy',
26
'License :: OSI Approved :: MIT License',
27
],
28
-
29
keywords='api graphql protocol rest flask',
30
packages=find_packages(exclude=['tests']),
31
install_requires=required_packages,
32
tests_require=['pytest>=2.7.3'],
+ include_package_data=True,
33
+ zip_safe=False,
34
+ platforms='any',
35
)
0 commit comments