learnwithchampak 0.1.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.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Champak's World
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,33 @@
1
+ Metadata-Version: 2.4
2
+ Name: learnwithchampak
3
+ Version: 0.1.0
4
+ Summary: Python learning utilities by Champak Roy.
5
+ Author: Champak Roy
6
+ License: MIT
7
+ Project-URL: Homepage, https://learnwithchampak.live
8
+ Project-URL: Repository, https://github.com/Programmer-s-Picnic/learnwithchampak
9
+ Keywords: python,education,learning,programming
10
+ Classifier: Development Status :: 3 - Alpha
11
+ Classifier: Intended Audience :: Education
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.8
14
+ Classifier: Programming Language :: Python :: 3.9
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: 3.13
19
+ Classifier: License :: OSI Approved :: MIT License
20
+ Classifier: Operating System :: OS Independent
21
+ Requires-Python: >=3.8
22
+ Description-Content-Type: text/markdown
23
+ License-File: LICENSE
24
+ Dynamic: license-file
25
+
26
+ # learnwithchampak
27
+
28
+ Python learning utilities by Champak Roy.
29
+
30
+ ## Installation
31
+
32
+ ```bash
33
+ pip install learnwithchampak
@@ -0,0 +1,8 @@
1
+ # learnwithchampak
2
+
3
+ Python learning utilities by Champak Roy.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pip install learnwithchampak
@@ -0,0 +1,35 @@
1
+ [build-system]
2
+ requires = ["setuptools>=69", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "learnwithchampak"
7
+ version = "0.1.0"
8
+ description = "Python learning utilities by Champak Roy."
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+ license = { text = "MIT" }
12
+ authors = [
13
+ { name = "Champak Roy" }
14
+ ]
15
+ keywords = ["python", "education", "learning", "programming"]
16
+ classifiers = [
17
+ "Development Status :: 3 - Alpha",
18
+ "Intended Audience :: Education",
19
+ "Programming Language :: Python :: 3",
20
+ "Programming Language :: Python :: 3.8",
21
+ "Programming Language :: Python :: 3.9",
22
+ "Programming Language :: Python :: 3.10",
23
+ "Programming Language :: Python :: 3.11",
24
+ "Programming Language :: Python :: 3.12",
25
+ "Programming Language :: Python :: 3.13",
26
+ "License :: OSI Approved :: MIT License",
27
+ "Operating System :: OS Independent"
28
+ ]
29
+
30
+ [project.urls]
31
+ Homepage = "https://learnwithchampak.live"
32
+ Repository = "https://github.com/Programmer-s-Picnic/learnwithchampak"
33
+
34
+ [tool.setuptools.packages.find]
35
+ where = ["src"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,3 @@
1
+ from .core import hello
2
+
3
+ __version__ = "0.1.0"
@@ -0,0 +1,2 @@
1
+ def hello(name: str = "World") -> str:
2
+ return f"Hello, {name}! Welcome to Learn With Champak."
@@ -0,0 +1,2 @@
1
+ from learnwithchampak import hello
2
+ print(hello("Champak"))
@@ -0,0 +1,33 @@
1
+ Metadata-Version: 2.4
2
+ Name: learnwithchampak
3
+ Version: 0.1.0
4
+ Summary: Python learning utilities by Champak Roy.
5
+ Author: Champak Roy
6
+ License: MIT
7
+ Project-URL: Homepage, https://learnwithchampak.live
8
+ Project-URL: Repository, https://github.com/Programmer-s-Picnic/learnwithchampak
9
+ Keywords: python,education,learning,programming
10
+ Classifier: Development Status :: 3 - Alpha
11
+ Classifier: Intended Audience :: Education
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.8
14
+ Classifier: Programming Language :: Python :: 3.9
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: 3.13
19
+ Classifier: License :: OSI Approved :: MIT License
20
+ Classifier: Operating System :: OS Independent
21
+ Requires-Python: >=3.8
22
+ Description-Content-Type: text/markdown
23
+ License-File: LICENSE
24
+ Dynamic: license-file
25
+
26
+ # learnwithchampak
27
+
28
+ Python learning utilities by Champak Roy.
29
+
30
+ ## Installation
31
+
32
+ ```bash
33
+ pip install learnwithchampak
@@ -0,0 +1,11 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ src/learnwithchampak/__init__.py
5
+ src/learnwithchampak/core.py
6
+ src/learnwithchampak/hi.py
7
+ src/learnwithchampak.egg-info/PKG-INFO
8
+ src/learnwithchampak.egg-info/SOURCES.txt
9
+ src/learnwithchampak.egg-info/dependency_links.txt
10
+ src/learnwithchampak.egg-info/top_level.txt
11
+ tests/test_core.py
@@ -0,0 +1 @@
1
+ learnwithchampak
File without changes