File: setup.py

package info (click to toggle)
d2to1 0.2.12-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 240 kB
  • sloc: python: 1,671; makefile: 19
file content (17 lines) | stat: -rwxr-xr-x 424 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env python
try:
    from setuptools import setup
except ImportError:
    import sys
    if sys.version_info[:2] < (2, 6):
        from ez_setup25 import use_setuptools
    else:
        from ez_setup import use_setuptools
    use_setuptools()
    from setuptools import setup

# d2to1 basically installs itself!  See setup.cfg for the project metadata.
from d2to1.util import cfg_to_args


setup(**cfg_to_args())