mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-08 11:41:54 +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)
|