mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
7 lines
164 B
Python
7 lines
164 B
Python
|
import setuptools
|
||
|
import tokenize
|
||
|
|
||
|
__file__='setup.py';
|
||
|
|
||
|
exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\\r\\n', '\\n'), __file__, 'exec'))
|