forked from graphql-python/sanic-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 1.13 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
from setuptools import setup, find_packages
required_packages = [
'graphql-core>=1.0',
'graphql-server-core>=1.0.dev',
'sanic>=0.5.1',
'pytest-runner'
]
setup(
name='Sanic-GraphQL',
version='1.1.0',
description='Adds GraphQL support to your Sanic application',
long_description=open('README.rst').read(),
url='https://github.com/graphql-python/sanic-graphql',
download_url='https://github.com/graphql-python/sanic-graphql/releases',
author='Sergey Porivaev',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: MIT License',
],
keywords='api graphql protocol sanic',
packages=find_packages(exclude=['tests']),
install_requires=required_packages,
tests_require=['pytest>=2.7.3', 'aiohttp>=1.3.0', 'yarl>=0.9.6', 'jinja2>=2.9.0'],
include_package_data=True,
platforms='any',
)