-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (40 loc) · 1.23 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
35
36
37
38
39
40
41
from setuptools import find_packages, setup
setup(
name='graphscale_todo',
version='0.0.1',
description='Example Todo App For Graphscale',
# long_description=open('README.rst').read(),
url='https://github.com/schrockn/graphscale_todo',
author='Nicholas Schrock',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: PyPy',
'Environment :: MacOS X',
],
keywords='api graphql protocol rest relay graphscale',
packages=find_packages(exclude=['tests']),
install_requires=[
'aiodataloader>=0.1.2',
# must install the following from local copies
#'graphql-core==1.1',
#'graphql-server-core',
#'sanic-graphql',
#'graphscale'
'iso8601>=0.1.11',
'promise>=2.0.2',
'py>=1.4.34',
'PyMySQL>=0.7.11',
'redis>=2.10.5',
'six>=1.10.0',
'typing>=3.6.1',
],
tests_require=[
'pytest>=3.1.2',
'pytest-asyncio>=0.6.0',
],
)