forked from FullerHua/twisted
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup3.py
74 lines (55 loc) · 2.1 KB
/
setup3.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
#!/usr/bin/env python3
# Copyright (c) Twisted Matrix Laboratories.
# See LICENSE for details.
# This is a temporary helper to be able to build and install distributions of
# Twisted on/for Python 3. Once all of Twisted has been ported, it should go
# away and setup.py should work for either Python 2 or Python 3.
from __future__ import division, absolute_import
import sys
import os
from setuptools import setup, find_packages
from setuptools.command.build_py import build_py
from distutils.command.build_scripts import build_scripts
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
class PickyBuildScripts(build_scripts):
"""
A version of build_scripts which doesn't install the scripts that aren't
yet ported to Python 3.
"""
def copy_scripts(self):
from twisted.python.dist3 import portedScripts
self.scripts = portedScripts
return super(PickyBuildScripts, self).copy_scripts()
def main():
# Make sure the to-be-installed version of Twisted is used, if available,
# since we're importing from it:
if os.path.exists('twisted'):
sys.path.insert(0, '.')
from twisted.python.dist import STATIC_PACKAGE_METADATA, getScripts
args = STATIC_PACKAGE_METADATA.copy()
args.update(dict(
cmdclass={
'build_py': PickyBuildPy,
'build_scripts': PickyBuildScripts,
},
packages=find_packages(),
install_requires=["zope.interface >= 4.0.2"],
zip_safe=False,
include_package_data=True,
scripts=getScripts(),
))
setup(**args)
if __name__ == "__main__":
main()