-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
46 lines (36 loc) · 1.03 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
root = os.path.abspath(os.path.dirname(__file__))
version = __import__('pyelevator').__version__
with open(os.path.join(root, 'README.rst')) as f:
README = f.read()
setup(
name='py-elevator',
version=version,
license='MIT',
description = 'Python client for on-disk key/value database Elevator',
long_description=README,
author='Oleiade',
author_email='tcrevon@gmail.com',
url='http://github.com/oleiade/py-elevator',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
],
keywords='py-elevator elevator leveldb database key-value',
packages=[
'pyelevator',
'pyelevator.utils',
],
package_dir={'': '.'},
include_package_data=False,
install_requires=[
'pyzmq==13.0.2',
'lz4',
'msgpack-python'
],
)