Skip to content

Commit 22b0d19

Browse files
committed
updated README and project metadata
1 parent c555551 commit 22b0d19

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,7 @@ dist/
1616
# Environments
1717
.env
1818
.venv
19+
20+
# Coverage
21+
htmlcov/
22+
.coverage

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ print(ver.is_lts()) # True
105105
api.logout()
106106
```
107107

108-
> Please, refer to the [Zabbix API Documentation](https://www.zabbix.com/documentation/current/manual/api/reference) and the [using examples](https://github.com/zabbix/python-zabbix-utils/tree/master/examples/api) for more information.
108+
> Please, refer to the [Zabbix API Documentation](https://www.zabbix.com/documentation/current/manual/api/reference) and the [using examples](https://github.com/zabbix/python-zabbix-utils/tree/main/examples/api) for more information.
109109
110110
##### To work via Zabbix sender protocol
111111

@@ -141,7 +141,7 @@ print(chunks_resp)
141141
# [{"processed": 5, "failed": 0, "total": 5, "time": "0.001661", "chunk": 1}]
142142
```
143143

144-
> Please, refer to the [Zabbix sender protocol](https://www.zabbix.com/documentation/current/manual/appendix/protocols/zabbix_sender) and the [using examples](https://github.com/zabbix/python-zabbix-utils/tree/master/examples/sender) for more information.
144+
> Please, refer to the [Zabbix sender protocol](https://www.zabbix.com/documentation/current/manual/appendix/protocols/zabbix_sender) and the [using examples](https://github.com/zabbix/python-zabbix-utils/tree/main/examples/sender) for more information.
145145
146146
##### To work via Zabbix get protocol
147147

@@ -157,7 +157,7 @@ print(resp)
157157
# Linux test_server 5.15.0-3.60.5.1.el9uek.x86_64
158158
```
159159

160-
> Please, refer to the [Zabbix agent protocol](https://www.zabbix.com/documentation/current/manual/appendix/protocols/zabbix_agent) and the [using examples](https://github.com/zabbix/python-zabbix-utils/tree/master/examples/get) for more information.
160+
> Please, refer to the [Zabbix agent protocol](https://www.zabbix.com/documentation/current/manual/appendix/protocols/zabbix_agent) and the [using examples](https://github.com/zabbix/python-zabbix-utils/tree/main/examples/get) for more information.
161161
162162
### Enabling debug log
163163

setup.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
version=__version__,
1010
author="Zabbix SIA",
1111
author_email="[email protected]",
12+
maintainer="Aleksandr Iantsen",
13+
maintainer_email="[email protected]",
1214
description="A library with modules for working with Zabbix (Zabbix API, Zabbix sender, Zabbix get)",
1315
long_description=long_description,
1416
long_description_content_type="text/markdown",
@@ -22,15 +24,15 @@
2224
project_urls={
2325
'Zabbix': 'https://www.zabbix.com/documentation/current',
2426
'Source': 'https://github.com/zabbix/python-zabbix-utils',
25-
'Changes': 'https://github.com/zabbix/python-zabbix-utils/blob/master/CHANGELOG.md',
27+
'Changes': 'https://github.com/zabbix/python-zabbix-utils/blob/main/CHANGELOG.md',
2628
'Bug Tracker': 'https://github.com/zabbix/python-zabbix-utils/issues'
2729
},
2830
classifiers=[
2931
"Development Status :: 4 - Beta",
3032
"Programming Language :: Python",
3133
"Programming Language :: Python :: 3",
32-
"License :: OSI Approved :: MIT License",
33-
"Operating System :: OS Independent",
34+
"License :: OSI Approved :: MIT License",
35+
"Operating System :: OS Independent",
3436
"Topic :: System :: Monitoring",
3537
"Topic :: System :: Networking :: Monitoring",
3638
"Topic :: System :: Systems Administration",

0 commit comments

Comments
 (0)