-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 717 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 717 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
#!/usr/bin/env python
try:
from setuptools import setup, Extension, Command
except ImportError:
from distutils.core import setup, Extension, Command
setup(
name='wsclient',
version='0.1.0',
description='Websocket client using Tornado IOLoop.',
long_description=open('README.rst').read(),
author='Jeff Balogh',
author_email='github@jeffbalogh.org',
url='http://jbalogh.me',
packages=['wsclient'],
license='MIT',
install_requires=[
'tornado'
],
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
]
)