mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-06 10:44:36 +01:00
9 lines
145 B
Python
9 lines
145 B
Python
|
import setuptools
|
||
|
|
||
|
try:
|
||
|
import multiprocessing # noqa
|
||
|
except ImportError:
|
||
|
pass
|
||
|
|
||
|
setuptools.setup(setup_requires=['pbr>=1.8'], pbr=True)
|