]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/rook/rook-client-python/setup.py
import 15.2.0 Octopus source
[ceph.git] / ceph / src / pybind / mgr / rook / rook-client-python / setup.py
1 from setuptools import setup, find_packages
2
3 with open("README.md", "r") as fh:
4 long_description = fh.read()
5
6 setup(
7 name='rook-client',
8 version='1.0.0',
9 packages=find_packages(),
10 url='',
11 license='MIT',
12 author='Sebastian Wagner',
13 author_email='swagner@suse.com',
14 description='Client model classes for the CRDs exposed by Rook',
15 long_description=long_description,
16 long_description_content_type="text/markdown",
17 )