-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
40 lines (35 loc) · 1018 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
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python
from setuptools import setup, find_packages
version = "1.13"
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
long_description = ""
setup(
name="aioetcd3",
version=version,
author="gaopeiliang",
author_email="[email protected]",
long_description=long_description,
description="asyncio wrapper for etcd v3",
license="Apache",
classifiers=[
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Framework :: AsyncIO',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development',
'Framework :: AsyncIO',
],
url="https://github.com/gaopeiliang/aioetcd3",
platforms=['any'],
packages=find_packages(),
python_requires='>=3.6',
install_requires=[
'aiogrpc>=1.4',
'protobuf'
]
)