-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·45 lines (42 loc) · 1.29 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·45 lines (42 loc) · 1.29 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
39
40
41
42
43
44
45
#!/usr/bin/env python
from setuptools import setup, find_packages
import versioneer
with open('README.rst') as file:
long_description = file.read()
setup(
name="aioconsul",
long_description=long_description,
version=versioneer.get_version(),
description='async/await client for the Consul HTTP API',
author='Xavier Barbosa',
author_email='[email protected]',
url='http://aio.errorist.io/aioconsul',
packages=find_packages(),
keywords=[
'infrastructure',
'asyncio',
'service discovery',
'health checking',
'key/value store'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Quality Assurance',
'Topic :: System :: Clustering',
'Topic :: System :: Monitoring',
'Topic :: System :: Networking :: Monitoring',
],
install_requires=[
'aiohttp>=1.0.2',
'python-dateutil>=2.5.3',
'pyhcl>=0.2.1',
'wheel>0.25.0'
],
license='BSD',
cmdclass=versioneer.get_cmdclass()
)