1 | | from distutils.core import setup |
2 | | from distutils.command.install_data import install_data |
3 | | from distutils.command.install import INSTALL_SCHEMES |
| 1 | #!/usr/bin/env python |
| 2 | try: |
| 3 | from setuptools.core import setup |
| 4 | from setuptools.command.install_data import install_data |
| 5 | from setuptools.command.install import INSTALL_SCHEMES |
| 6 | except ImportError: |
| 7 | from distutils.core import setup |
| 8 | from distutils.command.install_data import install_data |
| 9 | from distutils.command.install import INSTALL_SCHEMES |
| 10 | |