-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
54 lines (52 loc) · 1.75 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='django-simple-health-check',
version='0.6.1',
description='Simple Django health check',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Sergei Pikhovkin',
author_email='s@pikhovkin.ru',
url='https://github.com/pikhovkin/django-simple-health-check',
packages=[
'simple_health_check',
],
include_package_data=True,
install_requires=[
'Django>=3.1,<5.1',
],
extras_require={
'psutil': ['psutil'],
},
python_requires='>=3.7,<4.0',
license='MIT',
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.0',
'Framework :: Django :: 4.1',
'Framework :: Django :: 4.2',
'Framework :: Django :: 5.0',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
keywords=[
'django', 'monitoring', 'healthcheck', 'health-check', 'ping', 'health-checks', 'healthchecks',
'liveness', 'readiness', 'liveness-detection', 'readiness-checker', 'django-health-check',
'readiness-detection', 'liveness-checker',
],
)