-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
29 lines (28 loc) · 855 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
28
29
from setuptools import setup, find_packages
setup(
name="rocksdbserver",
version='0.1',
description="RocksDB Server",
keywords='rocksdbserver rocksdb',
author='Prashanth Ellina',
author_email="Use the github issues",
url="https://github.com/prashanthellina/rocksdbserver",
license='MIT License',
install_requires=[
'cython >= 0.20',
'decorator',
'gevent',
'decorator',
'tornado',
'msgpack-python',
'funcserver',
'pyrocksdb',
],
dependency_links=[
'https://github.com/prashanthellina/funcserver/archive/master.zip#egg=funcserver',
'http://github.com/stephan-hof/pyrocksdb/archive/v0.2.tar.gz#egg=pyrocksdb'
],
package_dir={'rocksdbserver': 'rocksdbserver'},
packages=find_packages('.'),
include_package_data=True
)