teams-alerter 0.1.0__tar.gz → 0.1.1__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,8 +1,9 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: teams-alerter
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Module pour envoyer des alertes Teams via Pub/Sub
5
5
  Author-email: Toki <t.bakotondrabe-ext@paris-turf.com>
6
+ License: MIT
6
7
  Requires-Python: >=3.8
7
8
  Description-Content-Type: text/markdown
8
9
  Requires-Dist: google-cloud-logging
@@ -98,3 +99,13 @@ teams-alerter/
98
99
  These dependencies are already listed in your `pyproject.toml`.
99
100
 
100
101
  ---
102
+
103
+ LIB URL:
104
+ https://pypi.org/project/teams-alerter/0.1.0/
105
+
106
+ How to build and publish ?
107
+ pip install build twine
108
+ python -m build
109
+ twine upload dist/*
110
+ dans requirements.txt, ajouter teams-alerter==0.1.0
111
+ dans le code: from teams_alerter import TeamsAlerter
@@ -88,3 +88,13 @@ teams-alerter/
88
88
  These dependencies are already listed in your `pyproject.toml`.
89
89
 
90
90
  ---
91
+
92
+ LIB URL:
93
+ https://pypi.org/project/teams-alerter/0.1.0/
94
+
95
+ How to build and publish ?
96
+ pip install build twine
97
+ python -m build
98
+ twine upload dist/*
99
+ dans requirements.txt, ajouter teams-alerter==0.1.0
100
+ dans le code: from teams_alerter import TeamsAlerter
@@ -1,15 +1,19 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
1
5
  [project]
2
6
  name = "teams-alerter"
3
- version = "0.1.0"
7
+ version = "0.1.1"
4
8
  description = "Module pour envoyer des alertes Teams via Pub/Sub"
5
9
  authors = [{ name = "Toki", email = "t.bakotondrabe-ext@paris-turf.com" }]
6
10
  readme = "README.md"
11
+ license = { text = "MIT" }
7
12
  requires-python = ">=3.8"
8
13
  dependencies = [
9
14
  "google-cloud-logging",
10
15
  "google-cloud-pubsub",
11
16
  ]
12
17
 
13
- [build-system]
14
- requires = ["setuptools", "wheel"]
15
- build-backend = "setuptools.build_meta"
18
+ [tool.setuptools.packages.find]
19
+ where = ["."]
@@ -1,8 +1,9 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: teams-alerter
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Module pour envoyer des alertes Teams via Pub/Sub
5
5
  Author-email: Toki <t.bakotondrabe-ext@paris-turf.com>
6
+ License: MIT
6
7
  Requires-Python: >=3.8
7
8
  Description-Content-Type: text/markdown
8
9
  Requires-Dist: google-cloud-logging
@@ -98,3 +99,13 @@ teams-alerter/
98
99
  These dependencies are already listed in your `pyproject.toml`.
99
100
 
100
101
  ---
102
+
103
+ LIB URL:
104
+ https://pypi.org/project/teams-alerter/0.1.0/
105
+
106
+ How to build and publish ?
107
+ pip install build twine
108
+ python -m build
109
+ twine upload dist/*
110
+ dans requirements.txt, ajouter teams-alerter==0.1.0
111
+ dans le code: from teams_alerter import TeamsAlerter
@@ -0,0 +1,10 @@
1
+ README.md
2
+ pyproject.toml
3
+ teams_alerter/__init__.py
4
+ teams_alerter/core.py
5
+ teams_alerter/utils.py
6
+ teams_alerter.egg-info/PKG-INFO
7
+ teams_alerter.egg-info/SOURCES.txt
8
+ teams_alerter.egg-info/dependency_links.txt
9
+ teams_alerter.egg-info/requires.txt
10
+ teams_alerter.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ dist
2
+ teams_alerter
@@ -1,11 +0,0 @@
1
- from setuptools import setup, find_packages
2
-
3
- setup(
4
- name="teams-alerter",
5
- version="0.1.0",
6
- packages=find_packages(),
7
- install_requires=[
8
- "google-cloud-logging",
9
- "google-cloud-pubsub",
10
- ],
11
- )
@@ -1,11 +0,0 @@
1
- README.md
2
- pyproject.toml
3
- src/__init__.py
4
- src/core.py
5
- src/setup.py
6
- src/utils.py
7
- src/teams_alerter.egg-info/PKG-INFO
8
- src/teams_alerter.egg-info/SOURCES.txt
9
- src/teams_alerter.egg-info/dependency_links.txt
10
- src/teams_alerter.egg-info/requires.txt
11
- src/teams_alerter.egg-info/top_level.txt
@@ -1,4 +0,0 @@
1
- __init__
2
- core
3
- setup
4
- utils
File without changes