NotificationManager-ishaang 0.0.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.
@@ -0,0 +1,10 @@
1
+ Metadata-Version: 2.4
2
+ Name: NotificationManager-ishaang
3
+ Version: 0.0.1
4
+ Summary: Simple Notification Sender
5
+ Author-email: Ishaan Gupta <cooleducation7@gmail.com>
6
+ License: MIT
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: Operating System :: OS Independent
9
+ Requires-Python: >=3.7
10
+ Description-Content-Type: text/markdown
File without changes
@@ -0,0 +1,21 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "NotificationManager-ishaang"
7
+ version = "0.0.1"
8
+ authors = [
9
+ { name="Ishaan Gupta", email="cooleducation7@gmail.com" },
10
+ ]
11
+ description = "Simple Notification Sender"
12
+ readme = "README.md"
13
+ license = {text = "MIT"}
14
+ requires-python = ">=3.7"
15
+ classifiers = [
16
+ "Programming Language :: Python :: 3",
17
+ "Operating System :: OS Independent",
18
+ ]
19
+
20
+ [tool.setuptools.packages.find]
21
+ where = ["src"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,14 @@
1
+ import os
2
+ import platform
3
+
4
+ def shout():
5
+ """A simple function to test that the link works!"""
6
+ username = os.getlogin()
7
+ system = platform.system()
8
+ print(f"--- 🚀 SUCCESS! ---")
9
+ print(f"Hello {username}!")
10
+ print(f"Your {system} machine is now running code downloaded from Pip.")
11
+ print(f"-------------------")
12
+
13
+ if __name__ == "__main__":
14
+ shout()
@@ -0,0 +1,10 @@
1
+ Metadata-Version: 2.4
2
+ Name: NotificationManager-ishaang
3
+ Version: 0.0.1
4
+ Summary: Simple Notification Sender
5
+ Author-email: Ishaan Gupta <cooleducation7@gmail.com>
6
+ License: MIT
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: Operating System :: OS Independent
9
+ Requires-Python: >=3.7
10
+ Description-Content-Type: text/markdown
@@ -0,0 +1,8 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/NotificationManager/__init__.py
4
+ src/NotificationManager/main.py
5
+ src/NotificationManager_ishaang.egg-info/PKG-INFO
6
+ src/NotificationManager_ishaang.egg-info/SOURCES.txt
7
+ src/NotificationManager_ishaang.egg-info/dependency_links.txt
8
+ src/NotificationManager_ishaang.egg-info/top_level.txt