forked from thunderpush/thunderpush
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 953 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
35
#!/usr/bin/env python
from setuptools import setup, find_packages
install_requires = [
'sockjs-tornado==0.0.4',
'tornado==2.3',
'wsgiref==0.1.2',
]
setup(
name='thunderpush',
version='0.9.7',
author='Krzysztof Jagiello',
author_email='[email protected]',
description='Tornado and SockJS based, complete Web push solution.',
packages=find_packages(),
zip_safe=False,
install_requires=install_requires,
license='BSD',
include_package_data=True,
url='https://github.com/thunderpush/thunderpush',
test_suite='thunderpush.testsuite.suite',
entry_points={
'console_scripts': [
'thunderpush = thunderpush.runner:main',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Internet',
],
)