setup.py 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. from setuptools import setup, find_packages
  2. setup(
  3. name='gql',
  4. version='0.2.0',
  5. description='GraphQL client for Python',
  6. long_description=open('README.md').read(),
  7. long_description_content_type="text/markdown",
  8. url='https://github.com/graphql-python/gql',
  9. author='Syrus Akbary',
  10. author_email='me@syrusakbary.com',
  11. license='MIT',
  12. classifiers=[
  13. 'Development Status :: 3 - Alpha',
  14. 'Intended Audience :: Developers',
  15. 'Topic :: Software Development :: Libraries',
  16. 'Programming Language :: Python :: 2',
  17. 'Programming Language :: Python :: 2.7',
  18. 'Programming Language :: Python :: 3',
  19. 'Programming Language :: Python :: 3.5',
  20. 'Programming Language :: Python :: 3.6',
  21. 'Programming Language :: Python :: 3.7',
  22. 'Programming Language :: Python :: 3.8',
  23. 'Programming Language :: Python :: Implementation :: PyPy',
  24. ],
  25. keywords='api graphql protocol rest relay gql client',
  26. packages=find_packages(include=["gql*"]),
  27. install_requires=[
  28. 'six>=1.10.0',
  29. 'graphql-core>=0.5.0,<2',
  30. 'promise>=2.0,<3',
  31. 'requests>=2.12,<3'
  32. ],
  33. tests_require=[
  34. 'pytest>=3,<4',
  35. 'pytest-cov>=2.8,<3',
  36. 'mock>=3,<4',
  37. 'vcrpy>=2.1,<3'
  38. ],
  39. )