diff options
author | Alfredo Deza <alfredo@deza.pe> | 2013-08-07 12:59:34 -0700 |
---|---|---|
committer | Gary Lowell <gary.lowell@inktank.com> | 2013-10-09 10:04:48 -0700 |
commit | 9900876d263ea141c3371a1f004c9e478a967be2 (patch) | |
tree | 4d670147ee68ba90e9979ff8f471d126df45c6ae | |
parent | 8e493ef23b1a70e19aaee63f656706d2aa004068 (diff) | |
download | ceph-9900876d263ea141c3371a1f004c9e478a967be2.tar.gz |
create a setup.py file
Signed-off-by: Alfredo Deza <alfredo@deza.pe>
-rw-r--r-- | src/pybind/setup.py | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/pybind/setup.py b/src/pybind/setup.py new file mode 100644 index 00000000000..6814ba09d87 --- /dev/null +++ b/src/pybind/setup.py @@ -0,0 +1,32 @@ +from setuptools import setup +import os + + +def long_description(): + readme = os.path.join(os.path.dirname(__file__), 'README.rst') + return open(readme).read() + + +setup( + name = 'ceph', + description = 'Bindings for Ceph', + packages = ['ceph'], + author = 'Inktank', + author_email = 'ceph-devel@vger.kernel.org', + version = '0.0.1', #XXX Fix version + license = "GPLv2", + zip_safe = False, + keywords = "ceph, bindings, api, cli", + long_description = "", #XXX Long description should come from the README.rst + classifiers = [ + 'Development Status :: 5 - Production/Stable', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: GNU General Public License v2 (GPLv2)', + 'Topic :: Software Development :: Libraries', + 'Topic :: Utilities', + 'Topic :: System :: Filesystems', + 'Operating System :: POSIX', + 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', + ], +) |