Newer 'mutagen' versions have a test suite that trips over missing encoding in this file. The file is copied to source trees at build time with the name nix_run_setup.py.
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'))
|