brainix/sources/nixpkgs/pkgs/development/interpreters/python/run_setup.py
2026-02-13 17:06:24 +09:00

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'))