OpenWrt_Luci_Lua/1_7.http_proxy_server/python/Twisted-15.2.1-source/setup3.py

52 lines
1.3 KiB
Python
Raw Normal View History

2015-06-15 14:20:58 +00:00
#!/usr/bin/env python3.3
# 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 distutils.command.sdist import sdist
class DisabledSdist(sdist):
"""
A version of the sdist command that does nothing.
"""
def run(self):
sys.stderr.write(
"The sdist command only works with Python 2 at the moment.\n")
sys.exit(1)
def main():
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
# 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.dist3 import modulesToInstall
from twisted.python.dist import STATIC_PACKAGE_METADATA
args = STATIC_PACKAGE_METADATA.copy()
args['install_requires'] = ["zope.interface >= 4.0.2"]
args['py_modules'] = modulesToInstall
args['cmdclass'] = {'sdist': DisabledSdist}
setup(**args)
if __name__ == "__main__":
main()