-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (26 loc) · 801 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
import setuptools
with open("README.md", "r") as rmd:
long_description = rmd.read()
setuptools.setup(
name="accumulator-aio",
version="0.1.0",
author="Nestor Sokil",
author_email="[email protected]",
description="Async Python3 client for Apache Accumulo",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/nestorsokil/accumulator-aio",
packages=[
"accumulator-aio"
],
install_requires=[
'thriftpy2',
],
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha"
],
)