forked from oleiade/Elevator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
71 lines (57 loc) · 1.6 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
root = os.path.abspath(os.path.dirname(__file__))
version = __import__('elevator').__version__
with open(os.path.join(root, 'README.rst')) as f:
README = f.read()
with open(os.path.join(root, 'CHANGES.rst')) as f:
CHANGES = f.read()
setup(
name='Elevator',
version=version,
license='MIT',
description='On disk key/value store based on levelDB backend',
long_description=README + '\n\n' + CHANGES,
author='Oleiade',
author_email='[email protected]',
url='http://github.com/oleiade/Elevator',
classifiers=[
'Topic :: Database :: Database Engines/Servers',
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
],
keywords='elevator leveldb database key-value',
packages=[
'elevator',
'elevator.backend',
'elevator.utils',
'elevator.helpers',
'elevator_cli',
],
package_dir={'': '.'},
include_package_data=False,
zip_safe=True,
install_requires=[
'lz4',
'python-daemon==1.5.5',
'msgpack-python',
'pyzmq==13.0.0',
'unittest2',
'ujson',
'procname',
'clint',
'plyvel',
'fabric',
],
# Setting up executable/main functions links
entry_points={
'console_scripts': [
'elevator = elevator.server:main',
'elevator-cli = elevator_cli.main:main',
]
},
)