lumina-engine 1.0.0__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.
File without changes
@@ -0,0 +1,21 @@
1
+ Metadata-Version: 2.4
2
+ Name: lumina-engine
3
+ Version: 1.0.0
4
+ Summary: A tiny relationship package.
5
+ Author: suressh25
6
+ Requires-Python: >=3.8
7
+ Description-Content-Type: text/markdown
8
+ License-File: LICENSE
9
+ Dynamic: license-file
10
+
11
+ # Nick&Judy ❤️
12
+
13
+ A Python package created for someone very special.
14
+
15
+ Usage
16
+
17
+ ```python
18
+ from lumina import Anniversary
19
+
20
+ Anniversary().start()
21
+ ```
@@ -0,0 +1,11 @@
1
+ # Nick&Judy ❤️
2
+
3
+ A Python package created for someone very special.
4
+
5
+ Usage
6
+
7
+ ```python
8
+ from lumina import Anniversary
9
+
10
+ Anniversary().start()
11
+ ```
@@ -0,0 +1 @@
1
+ from .anniversary import Anniversary
@@ -0,0 +1,81 @@
1
+ import time
2
+ from datetime import date
3
+
4
+
5
+ class Anniversary:
6
+
7
+ def __init__(self):
8
+ self.proposal_date = date(2025, 6, 22)
9
+ self.confession_date = date(2025, 7, 19)
10
+
11
+ def loading(self):
12
+ steps = [
13
+ "Initializing Relationship Engine",
14
+ "Loading memories",
15
+ "Loading smiles",
16
+ "Loading trust",
17
+ "Loading lubbb",
18
+ ]
19
+
20
+ for step in steps:
21
+ print(step + "...")
22
+ time.sleep(1)
23
+
24
+ def heart(self):
25
+ print(r"""
26
+ ❤️❤️❤️❤️❤️
27
+ ❤️ ❤️
28
+ ❤️ TANUURESH ❤️
29
+ ❤️ ❤️
30
+ ❤️❤️❤️❤️❤️
31
+ """)
32
+
33
+ def start(self):
34
+
35
+ self.loading()
36
+
37
+ today = date.today()
38
+
39
+ proposal_days = (today - self.proposal_date).days
40
+ confession_days = (today - self.confession_date).days
41
+
42
+ print("\nRelationship Status: ACTIVE ❤️\n")
43
+
44
+ print(f"Days since proposal : {proposal_days}")
45
+ print(f"Days since confession : {confession_days}")
46
+
47
+ print("\nGenerating forecast...\n")
48
+
49
+ time.sleep(2)
50
+
51
+ self.heart()
52
+
53
+ message = """
54
+ One year ago today,
55
+ a message was sent.
56
+
57
+ I didn't know what would happen next.
58
+
59
+ But that one moment changed my life.
60
+
61
+ Thank you for every conversation,
62
+ every smile,
63
+ every laugh,
64
+ and every memory.
65
+
66
+ You make ordinary days special.
67
+
68
+ Happy Proposal Anniversary My Judyyy❤️
69
+
70
+ - Your Nickk
71
+ """
72
+
73
+ for char in message:
74
+ print(char, end="", flush=True)
75
+ time.sleep(0.03)
76
+
77
+ print("\n\nFuture Roadmap")
78
+ print("✔ More memories")
79
+ print("✔ More laughter")
80
+ print("✔ More adventures")
81
+ print("\nStatus: Together Forever❤️")
@@ -0,0 +1,21 @@
1
+ Metadata-Version: 2.4
2
+ Name: lumina-engine
3
+ Version: 1.0.0
4
+ Summary: A tiny relationship package.
5
+ Author: suressh25
6
+ Requires-Python: >=3.8
7
+ Description-Content-Type: text/markdown
8
+ License-File: LICENSE
9
+ Dynamic: license-file
10
+
11
+ # Nick&Judy ❤️
12
+
13
+ A Python package created for someone very special.
14
+
15
+ Usage
16
+
17
+ ```python
18
+ from lumina import Anniversary
19
+
20
+ Anniversary().start()
21
+ ```
@@ -0,0 +1,10 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ setup.py
5
+ lumina/__init__.py
6
+ lumina/anniversary.py
7
+ lumina_engine.egg-info/PKG-INFO
8
+ lumina_engine.egg-info/SOURCES.txt
9
+ lumina_engine.egg-info/dependency_links.txt
10
+ lumina_engine.egg-info/top_level.txt
@@ -0,0 +1,14 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "lumina-engine"
7
+ version = "1.0.0"
8
+ authors = [
9
+ {name="suressh25"}
10
+ ]
11
+
12
+ description = "A tiny relationship package."
13
+ readme = "README.md"
14
+ requires-python = ">=3.8"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,7 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="lumina-engine",
5
+ version="1.0.0",
6
+ packages=find_packages(),
7
+ )