-
Notifications
You must be signed in to change notification settings - Fork 244
/
setup.py
31 lines (28 loc) · 1.09 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
from setuptools import setup, find_packages
setup(
name = "django-socketio",
version = __import__("django_socketio").__version__,
author = "Stephen McDonald",
author_email = "[email protected]",
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.2.1", "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",
]
)