-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
82 lines (69 loc) · 2.18 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
"""
pyNecktie
"""
import codecs
import os
import re
from distutils.errors import DistutilsPlatformError
from distutils.util import strtobool
from setuptools import setup
def open_local(paths, mode='r', encoding='utf8'):
path = os.path.join(
os.path.abspath(os.path.dirname(__file__)),
*paths
)
return codecs.open(path, mode, encoding)
with open_local(['pynecktie', '__init__.py'], encoding='latin1') as fp:
try:
version = re.findall(r"^__version__\s*=\s*['\"]([^'\"]+)['\"]\r?$",
fp.read(), re.M)[0]
except IndexError:
raise RuntimeError('Unable to determine version.')
with open_local(['README.rst']) as rm:
long_description = rm.read()
setup_kwargs = {
'name': 'pyNecktie',
'version': version,
'url': 'http://github.com/ashleysommer/pynecktie/',
'license': 'MIT',
'author': 'Ashley Sommer',
'author_email': '[email protected]',
'description': (
'A High Performance Asynchronous Python3 HTTP Micro Framework for serious business.'),
'long_description': long_description,
'packages': ['pynecktie'],
'platforms': 'any',
'classifiers': [
'Development Status :: 2 - Pre-Alpha',
'Environment :: Web Environment',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
}
ujson = 'ujson>=1.35'
uvloop = 'uvloop>=0.5.3'
requirements = [
'httptools>=0.0.9',
uvloop,
ujson,
'aiofiles>=0.3.0',
'websockets>=5.0,<6.0',
'multidict>=4.0,<5.0',
]
if strtobool(os.environ.get("NECKTIE_NO_UJSON", "no")):
print("Installing without uJSON")
requirements.remove(ujson)
# 'nt' means windows OS
if strtobool(os.environ.get("NECKTIE_NO_UVLOOP", "no")) or os.name == 'nt':
print("Installing without uvLoop")
requirements.remove(uvloop)
try:
setup_kwargs['install_requires'] = requirements
setup(**setup_kwargs)
except DistutilsPlatformError as exception:
requirements.remove(ujson)
requirements.remove(uvloop)
print("Installing without uJSON or uvLoop")
setup_kwargs['install_requires'] = requirements
setup(**setup_kwargs)