We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90dca47 commit 4891b83Copy full SHA for 4891b83
setup.py
@@ -1,8 +1,10 @@
1
+import re
2
import setuptools
3
from zabbix_utils.version import __version__
4
5
with open("README.md", "r", encoding="utf-8") as fh:
- long_description = fh.read()
6
+ regexp = r'(?<=##)\s*Get started\n*(^\*.*\n){1,10}\n*##'
7
+ long_description = re.sub(regexp, '', fh.read(), flags=re.M)
8
9
setuptools.setup(
10
name="zabbix_utils",
@@ -28,7 +30,7 @@
28
30
'Bug Tracker': 'https://github.com/zabbix/python-zabbix-utils/issues'
29
31
},
32
classifiers=[
- "Development Status :: 4 - Beta",
33
+ "Development Status :: 5 - Production/Stable",
34
"Programming Language :: Python",
35
"Programming Language :: Python :: 3",
36
"License :: OSI Approved :: MIT License",
0 commit comments