-
Notifications
You must be signed in to change notification settings - Fork 36
/
setup.py
34 lines (32 loc) · 882 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
27
28
29
30
31
32
33
34
from distutils.core import setup
description="""
HTML5 Server-Side Events for Django 1.3+
"""
setup(
name="django-sse",
version='0.4.1',
url='https://github.com/niwibe/django-sse',
license='BSD',
platforms=['OS Independent'],
description = description.strip(),
author = 'Andrei Antoukh',
author_email = 'niwi@niwi.be',
maintainer = 'Andrei Antoukh',
maintainer_email = 'niwi@niwi.be',
packages = [
'django_sse',
],
requires = [
'sse',
],
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
]
)