python-autopage/setup.py
Zane Bitter e634e76b33 Fix hang in unit testing
Because the unit tests use multiprocessing, we must avoid launching
setuptools again when we spawn a child process.
2023-05-25 01:06:55 +12:00

4 lines
108 B
Python

from setuptools import setup
if __name__ == '__main__':
setup(install_requires=["setuptools>=30.3.0"])