git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
8 lines
189 B
Python
8 lines
189 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
import setuptools
|
|
import tokenize
|
|
|
|
__file__='setup.py';
|
|
|
|
exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\\r\\n', '\\n'), __file__, 'exec'))
|