summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/rook/rook-client-python/setup.py
blob: 356a3015c92f37b3b6447fd1186f4b2a1e5ae20f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from setuptools import setup, find_packages

with open("README.md", "r") as fh:
    long_description = fh.read()

setup(
    name='rook-client',
    version='1.0.0',
    packages=find_packages(),
    url='',
    license='MIT',
    author='Sebastian Wagner',
    author_email='swagner@suse.com',
    description='Client model classes for the CRDs exposed by Rook',
    long_description=long_description,
    long_description_content_type="text/markdown",
)