diff --git a/PKG-INFO b/PKG-INFO new file mode 100644 index 0000000..6ed7b3b --- /dev/null +++ b/PKG-INFO @@ -0,0 +1,60 @@ +Metadata-Version: 1.0 +Name: imboclient +Version: 0.1.2 +Summary: Python client for Imbo +Home-page: http://www.imbo-project.org +Author: Andreas Søvik, Mats Lindh +Author-email: arsovik@gmail.com, mats.lindh@gmail.com +License: LICENSE.txt +Description: Python client for Imbo + ====================== + + A client for Imbo written in Python for 2.7/3.4+ + + + Installation + ============ + + Install the most recently released version from pip: + + pip install imboclient + + .. or if you like living on the edge, install the bleeding fresh version directly from Github: + + pip install git+git://github.com/imbo/imboclient-python.git + + + Usage + ===== + + For a quick overview of the current functionality refer to the integration tests that perform simple operations with the client. + + + Develop/Contribute to Python client for Imbo + ============================================ + + Get the code and install dependencies: + + git clone git@github.com:imbo/imboclient-python.git + cd imboclient-python && make install + + Run the unit testsuite: + + make test + + run the integration testsuite (NOTE: this requires a running imbo-instance as specified in imboclient/test/integration/config.py): + + make integration-test + + - Keep it simple and easy to understand + - Solid test coverage + - PEP8 + + License + ======= + + Copyright (c) 2013, Andreas Søvik + + Licensed under the MIT License + +Platform: UNKNOWN diff --git a/README.md b/README.md index 0835d3e..d7d87f6 100644 --- a/README.md +++ b/README.md @@ -8,11 +8,13 @@ A client for Imbo written in Python for 2.7/3.4+ Installation ============ -Install it directly from Github: +Install the most recently released version from pip: - pip install git+git://github.com/imbo/imboclient-python.git + pip install imboclient + +.. or if you like living on the edge, install the bleeding fresh version directly from Github: -Package will be deployed to pip repositories shortly, after a few planned backwards-compatible-break-inducing changes have been made to this client. See list of current issues on Github for an overview. + pip install git+git://github.com/imbo/imboclient-python.git Usage