This repository has been archived by the owner on May 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
87 lines (78 loc) · 3.2 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
# When pip installs anything from packages, py_modules, or ext_modules that
# includes a twistd plugin (which are installed to twisted/plugins/),
# setuptools/distribute writes a Package.egg-info/top_level.txt that includes
# "twisted". If you later uninstall Package with `pip uninstall Package`,
# pip <1.2 removes all of twisted/ instead of just Package's twistd plugins.
# See https://github.com/pypa/pip/issues/355 (now fixed)
#
# To work around this problem, we monkeypatch
# setuptools.command.egg_info.write_toplevel_names to not write the line
# "twisted". This fixes the behavior of `pip uninstall Package`. Note that
# even with this workaround, `pip uninstall Package` still correctly uninstalls
# Package's twistd plugins from twisted/plugins/, since pip also uses
# Package.egg-info/installed-files.txt to determine what to uninstall,
# and the paths to the plugin files are indeed listed in installed-files.txt.
from distutils import log
from setuptools import setup
from setuptools.command.install import install
class InstallTwistedPlugin(install, object):
def run(self):
super(InstallTwistedPlugin, self).run()
# Make Twisted regenerate the dropin.cache, if possible. This is necessary
# because in a site-wide install, dropin.cache cannot be rewritten by
# normal users.
log.info("Attempting to update Twisted plugin cache.")
try:
from twisted.plugin import IPlugin, getPlugins
list(getPlugins(IPlugin))
log.info("Twisted plugin cache updated successfully.")
except Exception, e:
log.warn("*** Failed to update Twisted plugin cache. ***")
log.warn(str(e))
try:
from setuptools.command import egg_info
egg_info.write_toplevel_names
except (ImportError, AttributeError):
pass
else:
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
# Now actually define the setup
import txsockjs
import os
setup(
author="Christopher Gamble",
author_email="chris@chrisgamble.net",
name="txsockjs",
version=txsockjs.__version__,
description="Twisted SockJS wrapper",
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
url="http://github.com/Fugiman/sockjs-twisted",
license='BSD License',
platforms=['OS Independent'],
packages=["txsockjs","txsockjs.protocols","twisted.plugins"],
install_requires=[
"Twisted",
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Twisted",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet",
],
cmdclass = {
'install': InstallTwistedPlugin,
},
)