Because the unit tests use multiprocessing, we must avoid launching setuptools again when we spawn a child process.
4 lines
108 B
Python
4 lines
108 B
Python
from setuptools import setup
|
|
|
|
if __name__ == '__main__':
|
|
setup(install_requires=["setuptools>=30.3.0"])
|