forked from twisted/twisted
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·83 lines (65 loc) · 2.15 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
#!/usr/bin/env python
# Copyright (c) Twisted Matrix Laboratories.
# See LICENSE for details.
"""
Setuptools installer for Twisted.
"""
import os
import sys
import setuptools
from setuptools.command.build_py import build_py
# Tell Twisted not to enforce zope.interface requirement on import, since
# we're going to have to import twisted.python.dist and can rely on
# setuptools to install dependencies.
setuptools._TWISTED_NO_CHECK_REQUIREMENTS = True
class PickyBuildPy(build_py):
"""
A version of build_py that doesn't install the modules that aren't yet
ported to Python 3.
"""
def find_package_modules(self, package, package_dir):
from twisted.python.dist3 import modulesToInstall, testDataFiles
modules = [
module for module
in super(build_py, self).find_package_modules(package, package_dir)
if ".".join([module[0], module[1]]) in modulesToInstall or
".".join([module[0], module[1]]) in testDataFiles]
return modules
def main(args):
"""
Invoke twisted.python.dist with the appropriate metadata about the
Twisted package.
"""
if os.path.exists('twisted'):
sys.path.insert(0, '.')
if sys.version_info[0] >= 3:
requirements = ["zope.interface >= 4.0.2"]
else:
requirements = ["zope.interface >= 3.6.0"]
from twisted.python.dist import (
STATIC_PACKAGE_METADATA, getExtensions, getConsoleScripts,
setup, _EXTRAS_REQUIRE)
setup_args = STATIC_PACKAGE_METADATA.copy()
setup_args.update(dict(
packages=setuptools.find_packages(),
install_requires=requirements,
conditionalExtensions=getExtensions(),
entry_points={
'console_scripts': getConsoleScripts()
},
include_package_data=True,
zip_safe=False,
extras_require=_EXTRAS_REQUIRE,
))
if sys.version_info[0] >= 3:
setup_args.update(dict(
cmdclass={
'build_py': PickyBuildPy,
}
))
setup(**setup_args)
if __name__ == "__main__":
try:
main(sys.argv[1:])
except KeyboardInterrupt:
sys.exit(1)