DjPractLelo 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.
File without changes
File without changes
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.4
2
+ Name: DjPractLelo
3
+ Version: 0.1.0
4
+ Summary: My first Python package
5
+ Author: Kamlesh Mestri
6
+ Author-email: Kamlesh Mestri <youremail@example.com>
7
+ License: MIT
8
+ Project-URL: Homepage, https://github.com/yourusername/my-package
9
+ Requires-Python: >=3.8
10
+ Description-Content-Type: text/markdown
11
+ License-File: LICENCE
12
+ Dynamic: author
13
+ Dynamic: license-file
14
+ Dynamic: requires-python
15
+
16
+ This is a python package containing py codes
@@ -0,0 +1,10 @@
1
+ LICENCE
2
+ README.md
3
+ pyproject.toml
4
+ setup.py
5
+ DjPractLelo/__init__.py
6
+ DjPractLelo/main.py
7
+ DjPractLelo.egg-info/PKG-INFO
8
+ DjPractLelo.egg-info/SOURCES.txt
9
+ DjPractLelo.egg-info/dependency_links.txt
10
+ DjPractLelo.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ DjPractLelo
File without changes
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.4
2
+ Name: DjPractLelo
3
+ Version: 0.1.0
4
+ Summary: My first Python package
5
+ Author: Kamlesh Mestri
6
+ Author-email: Kamlesh Mestri <youremail@example.com>
7
+ License: MIT
8
+ Project-URL: Homepage, https://github.com/yourusername/my-package
9
+ Requires-Python: >=3.8
10
+ Description-Content-Type: text/markdown
11
+ License-File: LICENCE
12
+ Dynamic: author
13
+ Dynamic: license-file
14
+ Dynamic: requires-python
15
+
16
+ This is a python package containing py codes
@@ -0,0 +1 @@
1
+ This is a python package containing py codes
@@ -0,0 +1,18 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "DjPractLelo"
7
+ version = "0.1.0"
8
+ description = "My first Python package"
9
+ readme = "README.md"
10
+ requires-python = ">=3.7"
11
+ license = {text = "MIT"}
12
+ authors = [
13
+ {name = "Kamlesh Mestri", email = "youremail@example.com"}
14
+ ]
15
+ dependencies = []
16
+
17
+ [project.urls]
18
+ Homepage = "https://github.com/yourusername/my-package"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,10 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="DjPractLelo",
5
+ version="0.1.0",
6
+ author="Kamlesh Mestri",
7
+ description="My demo Python package",
8
+ packages=find_packages(),
9
+ python_requires=">=3.8",
10
+ )