-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (30 loc) · 1.05 KB
/
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
long_description = \
'''This is a Python implementation of Tolga Tezel's Node.js project unio_.
Documentation and usage can be found on the pyunio_ page on Github.
.. _unio: http://github.com/ttezel/unio
.. _pyunio: http://github.com/citruspi/pyunio
'''
setup(
name='pyunio',
version='0.1.4',
author='Mihir Singh',
author_email='[email protected]',
packages=['pyunio'],
url='http://pypi.python.org/pypi/pyunio/',
license='MIT License',
description='Python implementation of unio.',
long_description=long_description,
install_requires=[
'requests',
'requests_oauthlib'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: System :: Networking',
'Topic :: Internet'
]
)