mirror of
https://github.com/goharbor/harbor
synced 2025-04-08 06:43:07 +00:00

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)
|