summaryrefslogtreecommitdiff
path: root/setup_egg.py
blob: b4ac750a59ecc8914ef13562a4e38967f1139b86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env python
#-----------------------------------------------------------------------------
#   Copyright (c) 2008-2014, David P. D. Moss. All rights reserved.
#
#   Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
"""
A Python setup file for distribute - http://packages.python.org/distribute/
"""

from setuptools import setup
filename = 'setup.py'
exec(compile(open(filename).read(), filename, 'exec'))