-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·36 lines (32 loc) · 815 Bytes
/
setup.py
File metadata and controls
executable file
·36 lines (32 loc) · 815 Bytes
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
36
#!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
try:
license = open('LICENSE').read()
except:
license = None
try:
readme = open('README.md').read()
except:
readme = None
setup(
name = 'django-serverpush',
version = '2.2.0',
author = 'Ziga Ham',
author_email = 'ziga.ham@gmail.com',
packages = ['serverpush', 'serverpush.management', 'serverpush.management.commands'],
scripts = [],
url = 'http://github.com/hamax/django-serverpush/',
license = license,
description = 'Easy to use django server push solution',
long_description = readme,
requires = ['tornadio2', 'django'],
install_requires = [
'tornadio2 >= 0.0.2',
'django >= 1.0.0'
]
)