forked from rethinkdb/rethinkdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (23 loc) · 825 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Copyright 2010-2013 RethinkDB, all rights reserved.
from setuptools import setup
version_path = 'rethinkdb/version.py'
exec(open(version_path).read())
setup(
name="rethinkdb",
zip_safe=True,
version=version,
description="This package provides the Python driver library for the RethinkDB database server.",
url="http://rethinkdb.com",
maintainer="RethinkDB Inc.",
maintainer_email="[email protected]",
packages=['rethinkdb'],
entry_points={
'console_scripts':[
'rethinkdb-import = rethinkdb._import:main',
'rethinkdb-dump = rethinkdb._dump:main',
'rethinkdb-export = rethinkdb._export:main',
'rethinkdb-restore = rethinkdb._restore:main',
'rethinkdb-index-rebuild = rethinkdb._index_rebuild:main'
]
}
)