-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 1.07 KB
/
setup.py
File metadata and controls
38 lines (35 loc) · 1.07 KB
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
#!/usr/bin/env python3
from setuptools import setup
if __name__ == '__main__':
with open('README.rst') as file:
long_description = file.read()
setup(
name='hbase-python',
packages=[
'hbase',
'hbase.client',
'hbase.protobuf',
'hbase.services'
],
version='0.5',
keywords=('hbase', 'hbase-client', 'hadoop'),
description='User friendly HBase client for Python 3. (Pure python implementation)',
long_description=long_description,
license='Free',
author='dm.ustc.edu.cn',
author_email='gylv@mail.ustc.edu.cn',
url='https://github.com/3601314/hbase-python',
platforms='any',
classifiers=[
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
include_package_data=True,
zip_safe=True,
install_requires=[
'requests',
'protobuf',
'kazoo'
]
)