ix-notifiers 0.5.0__tar.gz → 0.5.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {ix_notifiers-0.5.0 → ix_notifiers-0.5.2}/PKG-INFO +3 -2
- {ix_notifiers-0.5.0 → ix_notifiers-0.5.2}/ix_notifiers/constants.py +1 -1
- {ix_notifiers-0.5.0 → ix_notifiers-0.5.2}/ix_notifiers.egg-info/PKG-INFO +3 -2
- ix_notifiers-0.5.2/ix_notifiers.egg-info/requires.txt +1 -0
- {ix_notifiers-0.5.0 → ix_notifiers-0.5.2}/pyproject.toml +1 -0
- ix_notifiers-0.5.2/requirements.txt +1 -0
- ix_notifiers-0.5.2/setup.py +20 -0
- ix_notifiers-0.5.0/ix_notifiers.egg-info/requires.txt +0 -1
- ix_notifiers-0.5.0/requirements.txt +0 -1
- ix_notifiers-0.5.0/setup.py +0 -27
- {ix_notifiers-0.5.0 → ix_notifiers-0.5.2}/LICENSE +0 -0
- {ix_notifiers-0.5.0 → ix_notifiers-0.5.2}/README.md +0 -0
- {ix_notifiers-0.5.0 → ix_notifiers-0.5.2}/ix_notifiers/__init__.py +0 -0
- {ix_notifiers-0.5.0 → ix_notifiers-0.5.2}/ix_notifiers/core.py +0 -0
- {ix_notifiers-0.5.0 → ix_notifiers-0.5.2}/ix_notifiers/gotify_notifier.py +0 -0
- {ix_notifiers-0.5.0 → ix_notifiers-0.5.2}/ix_notifiers/null_notifier.py +0 -0
- {ix_notifiers-0.5.0 → ix_notifiers-0.5.2}/ix_notifiers.egg-info/SOURCES.txt +0 -0
- {ix_notifiers-0.5.0 → ix_notifiers-0.5.2}/ix_notifiers.egg-info/dependency_links.txt +0 -0
- {ix_notifiers-0.5.0 → ix_notifiers-0.5.2}/ix_notifiers.egg-info/top_level.txt +0 -0
- {ix_notifiers-0.5.0 → ix_notifiers-0.5.2}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: ix-notifiers
|
3
|
-
Version: 0.5.
|
3
|
+
Version: 0.5.2
|
4
4
|
Summary: A python library for notifiers
|
5
5
|
Author-email: Alex Thomae <notifiers@egos.tech>
|
6
6
|
License: MIT License
|
@@ -26,12 +26,13 @@ License: MIT License
|
|
26
26
|
SOFTWARE.
|
27
27
|
|
28
28
|
Project-URL: Homepage, https://gitlab.com/egos-tech/notifiers
|
29
|
+
Project-URL: Source, https://gitlab.com/egos-tech/notifiers
|
29
30
|
Classifier: Programming Language :: Python :: 3
|
30
31
|
Classifier: Operating System :: OS Independent
|
31
32
|
Requires-Python: >=3.6
|
32
33
|
Description-Content-Type: text/markdown
|
33
34
|
License-File: LICENSE
|
34
|
-
Requires-Dist: requests==2.32.
|
35
|
+
Requires-Dist: requests==2.32.3
|
35
36
|
|
36
37
|
# ix-notifiers
|
37
38
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: ix-notifiers
|
3
|
-
Version: 0.5.
|
3
|
+
Version: 0.5.2
|
4
4
|
Summary: A python library for notifiers
|
5
5
|
Author-email: Alex Thomae <notifiers@egos.tech>
|
6
6
|
License: MIT License
|
@@ -26,12 +26,13 @@ License: MIT License
|
|
26
26
|
SOFTWARE.
|
27
27
|
|
28
28
|
Project-URL: Homepage, https://gitlab.com/egos-tech/notifiers
|
29
|
+
Project-URL: Source, https://gitlab.com/egos-tech/notifiers
|
29
30
|
Classifier: Programming Language :: Python :: 3
|
30
31
|
Classifier: Operating System :: OS Independent
|
31
32
|
Requires-Python: >=3.6
|
32
33
|
Description-Content-Type: text/markdown
|
33
34
|
License-File: LICENSE
|
34
|
-
Requires-Dist: requests==2.32.
|
35
|
+
Requires-Dist: requests==2.32.3
|
35
36
|
|
36
37
|
# ix-notifiers
|
37
38
|
|
@@ -0,0 +1 @@
|
|
1
|
+
requests==2.32.3
|
@@ -0,0 +1 @@
|
|
1
|
+
requests==2.32.3
|
@@ -0,0 +1,20 @@
|
|
1
|
+
#!/usr/bin/env python3
|
2
|
+
# -*- coding: utf-8 -*-
|
3
|
+
""" setup.py for pypi """
|
4
|
+
|
5
|
+
import os
|
6
|
+
from setuptools import setup
|
7
|
+
|
8
|
+
about = {}
|
9
|
+
here = os.path.abspath(os.path.dirname(__file__))
|
10
|
+
with open(os.path.join(here, "ix_notifiers", "constants.py"), "r", encoding="utf-8") as f:
|
11
|
+
# pylint: disable-next=exec-used
|
12
|
+
exec(f.read(), about)
|
13
|
+
|
14
|
+
# Both VERSION and BUILD are set by build.sh in the pipeline
|
15
|
+
version = about['VERSION']
|
16
|
+
|
17
|
+
if about['BUILD']:
|
18
|
+
version += f'.{about['BUILD']}'
|
19
|
+
|
20
|
+
setup(version=version)
|
@@ -1 +0,0 @@
|
|
1
|
-
requests==2.32.2
|
@@ -1 +0,0 @@
|
|
1
|
-
requests==2.32.2
|
ix_notifiers-0.5.0/setup.py
DELETED
@@ -1,27 +0,0 @@
|
|
1
|
-
#!/usr/bin/env python3
|
2
|
-
# -*- coding: utf-8 -*-
|
3
|
-
""" setup.py for pypi """
|
4
|
-
|
5
|
-
import os
|
6
|
-
import setuptools
|
7
|
-
try:
|
8
|
-
from ix_notifiers.constants import VERSION, BUILD
|
9
|
-
except ModuleNotFoundError:
|
10
|
-
VERSION = '0.5.0'
|
11
|
-
BUILD = None
|
12
|
-
|
13
|
-
with open("README.md", "r", encoding="utf-8") as fh:
|
14
|
-
long_description = fh.read()
|
15
|
-
|
16
|
-
version = VERSION
|
17
|
-
|
18
|
-
if BUILD:
|
19
|
-
version += f'.{BUILD}'
|
20
|
-
|
21
|
-
requirement_path = f"{os.path.dirname(os.path.realpath(__file__))}/requirements.txt"
|
22
|
-
install_requires = []
|
23
|
-
if os.path.isfile(requirement_path):
|
24
|
-
with open(requirement_path, 'r', encoding='utf8') as f:
|
25
|
-
install_requires = f.read().splitlines()
|
26
|
-
|
27
|
-
setuptools.setup(version=version)
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|