File: setup_egg.py

package info (click to toggle)
dipy 0.7.1-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 43,276 kB
  • ctags: 9,823
  • sloc: python: 22,407; makefile: 260; pascal: 155; sh: 15; ansic: 11
file content (9 lines) | stat: -rw-r--r-- 389 bytes parent folder | download
1
2
3
4
5
6
7
8
9
#!/usr/bin/env python
# emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*-
# vi: set ft=python sts=4 ts=4 sw=4 et:
"""Wrapper to run setup.py using setuptools."""

if __name__ == '__main__':
    execfile('setup.py', dict(__name__='__main__',
                              __file__='setup.py', # needed in setup.py
                              force_setuptools=True))