forked from fiorix/cyclone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
102 lines (89 loc) · 3.37 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
#!/usr/bin/env python
#
# Copyright 2010 Alexandre Fiori
# based on the original Tornado by Facebook
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import sys
import platform
from distutils import log
from distutils.version import LooseVersion
from distutils.version import StrictVersion
requires = ["twisted"]
# Avoid installation problems on old RedHat distributions (ex. CentOS 5)
# http://stackoverflow.com/questions/7340784/easy-install-pyopenssl-error
py_version = platform.python_version()
if LooseVersion(py_version) < StrictVersion('2.6'):
distname, version, _id = platform.dist()
else:
distname, version, _id = platform.linux_distribution()
is_redhat = distname in ["CentOS", "redhat"]
if is_redhat and version and StrictVersion(version) < StrictVersion('6.0'):
requires.append("pyopenssl==0.12")
else:
requires.append("pyopenssl")
# PyPy and setuptools don't get along too well, yet.
if sys.subversion[0].lower().startswith("pypy"):
import distutils.core
setup = distutils.core.setup
extra = dict(requires=requires)
else:
import setuptools
setup = setuptools.setup
extra = dict(install_requires=requires)
try:
from setuptools.command import egg_info
egg_info.write_toplevel_names
except (ImportError, AttributeError):
pass
else:
"""
'twisted' should not occur in the top_level.txt file as this
triggers a bug in pip that removes all of twisted when a package
with a twisted plugin is removed.
"""
def _top_level_package(name):
return name.split('.', 1)[0]
def _hacked_write_toplevel_names(cmd, basename, filename):
pkgs = dict.fromkeys(
[_top_level_package(k)
for k in cmd.distribution.iter_distribution_names()
if _top_level_package(k) != "twisted"
]
)
cmd.write_file("top-level names", filename, '\n'.join(pkgs) + '\n')
egg_info.write_toplevel_names = _hacked_write_toplevel_names
setup(
name="cyclone",
version="git-2013042301",
author="fiorix",
author_email="[email protected]",
url="http://cyclone.io/",
license="http://www.apache.org/licenses/LICENSE-2.0",
description="Non-blocking web server. "
"A facebook's Tornado on top of Twisted.",
keywords="python non-blocking web server twisted facebook tornado",
packages=["cyclone", "twisted.plugins"],
package_data={"twisted": ["plugins/cyclone_plugin.py"],
"cyclone": ["appskel_default.zip",
"appskel_foreman.zip",
"appskel_signup.zip"]},
scripts=["scripts/cyclone"],
**extra
)
try:
from twisted.plugin import IPlugin, getPlugins
list(getPlugins(IPlugin))
except Exception, e:
log.warn("*** Failed to update Twisted plugin cache. ***")
log.warn(str(e))