1
0
mirror of https://github.com/goharbor/harbor synced 2025-04-19 17:33:59 +00:00
harbor/contrib/harbor-cli/setup.py
int32bit 19f3ebd353 Add CLI tool for Harbor
This patch provides a command-line tool for managing Harbor resources
like users, projects, images, etc.
2017-11-10 14:58:57 +08:00

9 lines
145 B
Python

import setuptools
try:
import multiprocessing # noqa
except ImportError:
pass
setuptools.setup(setup_requires=['pbr>=1.8'], pbr=True)