mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-06 18:50:09 +01:00
19f3ebd353
This patch provides a command-line tool for managing Harbor resources like users, projects, images, etc.
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)
|