forked from ashimali/healthcheck
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Brannon Jones
committed
Nov 11, 2016
1 parent
98c1046
commit d079a13
Showing
8 changed files
with
160 additions
and
133 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,3 +36,5 @@ nosetests.xml | |
.pydevproject | ||
|
||
.idea | ||
|
||
.python-version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
aiohttp==1.1.1 | ||
pylint==1.2.1 | ||
pep8==1.5.7 | ||
six==1.10.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,28 @@ | ||
#!/usr/bin/env python | ||
import sys | ||
from setuptools import setup | ||
|
||
from setuptools import setup, find_packages | ||
|
||
setup(name='healthcheck', | ||
install_requires = ['aiohttp>=1.1.1'] | ||
|
||
|
||
setup(name='aiohttp_healthcheck', | ||
version='1.3.1', | ||
description='Adds healthcheck endpoints to Flask apps', | ||
description='Adds healthcheck endpoints to aiohttp apps. Based on https://github.com/Runscope/healthcheck.', | ||
author='Frank Stratton', | ||
author_email='[email protected]', | ||
url='https://github.com/Runscope/healthcheck', | ||
download_url='https://github.com/Runscope/healthcheck/tarball/1.3.1', | ||
packages=find_packages(), | ||
zip_safe=False, | ||
include_package_data=True, | ||
maintainer='Brannon Jones', | ||
maintainer_email='brannonj@gmail.com', | ||
url='https://github.com/brannon/aiohttp-healthcheck', | ||
packages=['aiohttp_healthcheck'], | ||
zip_safe=True, | ||
license='MIT', | ||
platforms='any', | ||
install_requires=[], | ||
test_requires=['flask'], | ||
test_suite='test_healthcheck', | ||
# python_requires='>=3.4.2', | ||
install_requires=install_requires, | ||
classifiers=('Development Status :: 5 - Production/Stable', | ||
'Environment :: Web Environment', | ||
'Framework :: Flask', | ||
'Programming Language :: Python')) | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5')) |
Oops, something went wrong.