Skip to content

Instantly share code, notes, and snippets.

@dfee
Created September 24, 2017 08:06
Show Gist options
  • Save dfee/215f76c9e455e75e50e37ec32026d65a to your computer and use it in GitHub Desktop.
Save dfee/215f76c9e455e75e50e37ec32026d65a to your computer and use it in GitHub Desktop.
from setuptools import setup, find_packages
setup(
name='server',
version='0.1',
packages=find_packages(),
include_package_data=True,
install_requires=[
'aiohttp',
# 'aiohttp-graphql',
'aiohttp-session',
# 'aiohttp-security',
# 'aioredis',
# 'asphalt',
# 'faker',
# 'graphene>=2.0.dev',
# 'ipython',
# 'python-socketio',
# 'sqlalchemy',
],
entry_points='''
[console_scripts]
run=server:run
''',
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment