diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:45:59 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:45:59 +0000 |
commit | 19fcec84d8d7d21e796c7624e521b60d28ee21ed (patch) | |
tree | 42d26aa27d1e3f7c0b8bd3fd14e7d7082f5008dc /src/python-common/setup.py | |
parent | Initial commit. (diff) | |
download | ceph-19fcec84d8d7d21e796c7624e521b60d28ee21ed.tar.xz ceph-19fcec84d8d7d21e796c7624e521b60d28ee21ed.zip |
Adding upstream version 16.2.11+ds.upstream/16.2.11+dsupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/python-common/setup.py')
-rw-r--r-- | src/python-common/setup.py | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/python-common/setup.py b/src/python-common/setup.py new file mode 100644 index 000000000..43a46eb10 --- /dev/null +++ b/src/python-common/setup.py @@ -0,0 +1,32 @@ +from setuptools import setup, find_packages + + +with open("README.rst", "r") as fh: + long_description = fh.read() + + +setup( + name='ceph', + version='1.0.0', + packages=find_packages(), + author='', + author_email='dev@ceph.io', + description='Ceph common library', + long_description=long_description, + license='LGPLv2+', + keywords='ceph', + url="https://github.com/ceph/ceph", + zip_safe = False, + install_requires=( + 'pyyaml', + ), + classifiers = [ + 'Intended Audience :: Developer', + 'Operating System :: POSIX :: Linux', + 'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + ] +) |