File tree Expand file tree Collapse file tree 5 files changed +39
-7
lines changed
Expand file tree Collapse file tree 5 files changed +39
-7
lines changed Original file line number Diff line number Diff line change 1+ Installing tarantool-python
2+ ===========================
3+
4+ The simplest (and recommended) way to install tarantool-python
5+
6+ using `pip`::
7+
8+ $ pip install Celery
9+
10+ or `easy_install`::
11+
12+ $ easy_install Celery
13+
14+
15+ You can also download a source tarball and install the package using distutils script::
16+
17+ # python setup.py install
Original file line number Diff line number Diff line change 1+ include README.rst
2+ include README.txt
3+ include setup.py
4+ recursive-include src\tarantool\ *.py
Original file line number Diff line number Diff line change 22 trantool-python
33=================
44
5- Python interface to the ` Tarantool database < https://github.com/mailru/tarantool > `_.
5+ ` Tarantool `_ is a damn fast key/value data store originally designed by ` Mail.Ru `_ and released under the terms of ` BSD license `_.
66
7- Tarantool is a damn fast key/value data store originally designed by `Mail.Ru <http://mail.ru >`_
8- and released under the terms of `BSD license <http://www.gnu.org/licenses/license-list.html#ModifiedBSD >`_.
9- Tarantool is production-ready and actively used at `Mail.Ru <http://mail.ru >`_,
10- one of the leading Russian web content providers.
7+ `Tarantool `_ is production-ready and actively used at `Mail.Ru `_, one of the leading Russian web content providers.
8+
9+ .. _`Tarantool` : http://tarantool.org
10+ .. _`Mail.Ru` : http://mail.ru
11+ .. _`BSD license` : http://www.gnu.org/licenses/license-list.html#ModifiedBSD
Original file line number Diff line number Diff line change 1+ See README.rst
Original file line number Diff line number Diff line change 66 name = "tarantool-python" ,
77 packages = ["tarantool" ],
88 package_dir = {"tarantool" : os .path .join ("src" , "tarantool" )},
9- version = "0.2.0 " ,
9+ version = "0.2.1 " ,
1010 platforms = ["all" ],
1111 author = "Konstantin Cherkasoff" ,
1212 author_email = "k.cherkasoff@gmail.com" ,
1313 url = "https://github.com/coxx/tarantool-python" ,
14- description = "Python client library for the Tarantool Database" ,
14+ license = "BSD" ,
15+ description = "Python client library for Tarantool Database" ,
16+ long_description = open ("README.rst" ).read (),
17+ classifiers = [
18+ "Intended Audience :: Developers" ,
19+ "License :: OSI Approved :: BSD License" ,
20+ "Operating System :: OS Independent" ,
21+ "Programming Language :: Python" ,
22+ "Topic :: Database :: Front-Ends"
23+ ]
1524)
You can’t perform that action at this time.
0 commit comments