forked from NationalSecurityAgency/accumulo-python3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 704 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 704 Bytes
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
from setuptools import find_packages, setup
setup(
name='accumulo',
version='0.3.0',
packages=find_packages(),
url='https://github.com/NationalSecurityAgency/accumulo-python3',
author='National Security Agency',
author_email='/dev/null',
description='Build Python 3 applications that integrate with Apache Accumulo',
install_requires=[
'thrift>=0.13.0'
],
extras_require={
'replication': [
'pika>=1.1.0',
'protobuf==3.11.2'
]
},
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.8',
'Operating System :: OS Independent'
]
)