Skip to content

Commit 0cc30ee

Browse files
committed
Release 0.2.1
2 parents 21349c0 + f1f67b0 commit 0cc30ee

File tree

5 files changed

+39
-7
lines changed

5 files changed

+39
-7
lines changed

INSTALL

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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

MANIFEST.in

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
include README.rst
2+
include README.txt
3+
include setup.py
4+
recursive-include src\tarantool\ *.py

README.rst

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
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

README.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
See README.rst

setup.py

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,19 @@
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
)

0 commit comments

Comments
 (0)