-
Notifications
You must be signed in to change notification settings - Fork 62
/
setup.py
26 lines (25 loc) · 805 Bytes
/
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
from setuptools import find_packages, setup
from channels_api import __version__
setup(
name='channels_api',
version=__version__,
url='https://github.com/linuxlewis/channels-api',
author='Sam Bolgert',
author_email='[email protected]',
description="Helps build a RESTful API on top of WebSockets using channels.",
long_description=open('README.rst').read(),
license='MIT',
packages=find_packages(),
include_package_data=True,
install_requires=[
'Django>=1.8',
'channels<=1.1.8.1',
'djangorestframework>=3.0'
],
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
]
)