forked from ashimali/healthcheck
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
28 lines (24 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
#!/usr/bin/env python
import sys
from setuptools import setup
install_requires = ['aiohttp>=1.1.1']
setup(name='aiohttp_healthcheck',
version='1.3.1',
description='Adds healthcheck endpoints to aiohttp apps. Based on https://github.com/Runscope/healthcheck.',
author='Frank Stratton',
author_email='[email protected]',
maintainer='Brannon Jones',
maintainer_email='[email protected]',
url='https://github.com/brannon/aiohttp-healthcheck',
packages=['aiohttp_healthcheck'],
zip_safe=True,
license='MIT',
platforms='any',
# python_requires='>=3.4.2',
install_requires=install_requires,
classifiers=('Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'))