forked from python-websockets/websockets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (47 loc) · 1.66 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import os
import sys
import setuptools
# Avoid polluting the .tar.gz with ._* files under Mac OS X
os.putenv('COPYFILE_DISABLE', 'true')
root = os.path.dirname(__file__)
# Prevent distutils from complaining that a standard file wasn't found
README = os.path.join(root, 'README')
if not os.path.exists(README):
os.symlink(README + '.rst', README)
description = "An implementation of the WebSocket Protocol (RFC 6455)"
with open(os.path.join(root, 'README'), encoding='utf-8') as f:
long_description = '\n\n'.join(f.read().split('\n\n')[1:])
with open(os.path.join(root, 'websockets', 'version.py'), encoding='utf-8') as f:
exec(f.read())
py_version = sys.version_info[:2]
if py_version < (3, 3):
raise Exception("websockets requires Python >= 3.3.")
setuptools.setup(
name='websockets',
version=version,
author='Aymeric Augustin',
author_email='[email protected]',
url='https://github.com/aaugustin/websockets',
description=description,
long_description=long_description,
download_url='https://pypi.python.org/pypi/websockets',
packages=[
'websockets',
],
extras_require={
':python_version=="3.3"': ['asyncio'],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
],
platforms='all',
license='BSD'
)