mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
9 lines
189 B
Python
9 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'))
|