Signed-off-by: Sebastian Wagner <sebastian.wagner@suse.com>
--- /dev/null
+ceph-python-common
+==================
+
+This library is meant to be used to keep common data structures and
+functions usable throughout the Ceph project.
+
+Like for example:
+
+- All different Cython bindings
+- MGR modules
+- ``ceph`` command line interface and other Ceph tools.
+- Also external tools
+
+Requirements
+============
+
+- ``python-six``
+
+Usage
+=====
+
+From within the Ceph git, just import it:
+
+.. code:: python
+
+ from ceph.deployment_utils import DriveGroupSpec
+ from ceph.exceptions import OSError
from setuptools import setup, find_packages
+with open("README.rst", "r") as fh:
+ long_description = fh.read()
+
+
setup(
name='ceph',
version='1.0.0',
author='',
author_email='dev@ceph.io',
description='Ceph common library',
+ long_description=long_description,
license='LGPLv2+',
keywords='ceph',
url="https://github.com/ceph/ceph",