summary refs log tree commit diff
path: root/pkgs/development/python-modules/generic/run_setup.py
blob: e3a530eb0cb6a8fdff8388ba5e868abdece34c9a (plain) (blame)
1
2
3
4
5
6
7
8
# -*- coding: utf-8 -*-

import setuptools
import tokenize

__file__='setup.py';

exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\\r\\n', '\\n'), __file__, 'exec'))