forked from ashimali/healthcheck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (21 loc) · 820 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='healthcheck',
version='1.3.0',
description='Adds healthcheck endpoints to Flask apps',
author='Frank Stratton',
author_email='[email protected]',
url='https://github.com/Runscope/healthcheck',
download_url='https://github.com/Runscope/healthcheck/tarball/1.3.0',
packages=find_packages(),
zip_safe=False,
include_package_data=True,
license='MIT',
platforms='any',
install_requires=[],
test_requires=['flask'],
test_suite='test_healthcheck',
classifiers=('Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Flask',
'Programming Language :: Python'))