-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
30 lines (28 loc) · 942 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
from setuptools import setup
setup(
name='pipeup',
version='0.2.0',
packages=['pipeup'],
install_requires=['click', 'websocket-client'],
extras_require={
'server': ['tornado'],
'server-pubnub': ['tornado', 'pubnub', 'redis']
},
entry_points={
'console_scripts': ['pipeup=pipeup.cli:main'],
},
download_url='https://github.com/nathancahill/pipeup/tarball/0.2.0',
author='Nathan Cahill',
author_email='[email protected]',
url='http://github.com/nathancahill/pipeup',
keywords=['pipeup', 'pipe', 'stream', 'websockets'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7'
],
license='MIT',
description='A command line tool for piping to a webpage',
long_description=open('README.rst').read(),
)