summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/rook/rook-client-python/setup.py
blob: 86601fd6aac25bd327ebd2d0ec53ae5fdf22c869 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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(),
    package_data = {
        'rook_client': ['py.typed'],
    },
    url='',
    license='Apache License v2',
    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",
)