mirror of
https://github.com/flightlessmango/MangoHud.git
synced 2024-11-16 00:13:00 +00:00
10 lines
188 B
Python
10 lines
188 B
Python
|
import site
|
||
|
import sys
|
||
|
from setuptools import setup
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
setup()
|
||
|
|
||
|
# See https://github.com/pypa/pip/issues/7953
|
||
|
site.ENABLE_USER_SITE = "--user" in sys.argv[1:]
|