forked from guilhermef/tornado-eventsource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (30 loc) · 797 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
36
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from tornado_eventsource import __version__
tests_require = [
'coverage',
'nose',
'mock'
]
setup(
name='tornado_eventsource',
version=__version__,
description="EventSource handler for tornado",
long_description="A simple EventSource handler for tornado",
keywords='tornado EventSource event source',
author='Guilherme Souza',
author_email='guivideojob@gmail.com',
url='https://github.com/guilhermef/tornado-eventsource',
license='MIT',
classifiers=[],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'tornado<4.0.0'
],
extras_require={
'tests': tests_require,
},
)