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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ix-notifiers
3
- Version: 0.5.0
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.2
35
+ Requires-Dist: requests==2.32.3
35
36
 
36
37
  # ix-notifiers
37
38
 
@@ -3,6 +3,6 @@
3
3
  """ Constants declarations """
4
4
 
5
5
  # These get overwritten at build time. See build.sh
6
- VERSION = '0.5.0'
6
+ VERSION = '0.5.2'
7
7
  BUILD = None
8
8
  NAME = 'ix-notifiers'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ix-notifiers
3
- Version: 0.5.0
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.2
35
+ Requires-Dist: requests==2.32.3
35
36
 
36
37
  # ix-notifiers
37
38
 
@@ -0,0 +1 @@
1
+ requests==2.32.3
@@ -21,6 +21,7 @@ requires-python = ">=3.6"
21
21
 
22
22
  [project.urls]
23
23
  Homepage = "https://gitlab.com/egos-tech/notifiers"
24
+ Source = "https://gitlab.com/egos-tech/notifiers"
24
25
 
25
26
  [tool.setuptools.dynamic]
26
27
  dependencies = {file = ["requirements.txt"]}
@@ -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
@@ -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