forked from stephenmcd/django-socketio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 1.1 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
from setuptools import setup, find_packages
setup(
name="django-socketio",
version=__import__("django_socketio").__version__,
author="Stephen McDonald",
author_email="steve@jupo.org",
description=("A Django app providing the features required to use "
"websockets with Django via Socket.IO"),
long_description=open("README.rst").read(),
url="http://github.com/stephenmcd/django-socketio",
py_modules=["django_socketio"],
install_requires=[
"gevent-socketio==0.3.6",
"sphinx-me",
"django>=1.4.8"
],
zip_safe=False,
include_package_data=True,
packages=find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Internet :: WWW/HTTP :: WSGI",
]
)