lucas-roque-lib 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,14 @@
1
+ Metadata-Version: 2.5
2
+ Name: lucas_roque_lib
3
+ Version: 0.0.1
4
+ Summary: A small example package
5
+ Project-URL: Homepage, https://github.com/pypa/sampleproject
6
+ Project-URL: Bug Tracker, https://github.com/pypa/sampleproject/issues
7
+ Author-email: Lucas Roque <lroque@msudenver.edu>
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Operating System :: OS Independent
10
+ Classifier: Programming Language :: Python :: 3
11
+ Requires-Python: >=3.10
12
+ Description-Content-Type: text/markdown
13
+
14
+ This is a test package.
@@ -0,0 +1 @@
1
+ This is a test package.
File without changes
@@ -0,0 +1,2 @@
1
+ def add_one(number):
2
+ return number + 1
@@ -0,0 +1,22 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "lucas_roque_lib"
7
+ version = "0.0.1"
8
+ authors = [
9
+ { name="Lucas Roque", email="lroque@msudenver.edu" },
10
+ ]
11
+ description = "A small example package"
12
+ readme = "README.md"
13
+ requires-python = ">=3.10"
14
+ classifiers = [
15
+ "Programming Language :: Python :: 3",
16
+ "License :: OSI Approved :: MIT License",
17
+ "Operating System :: OS Independent",
18
+ ]
19
+
20
+ [project.urls]
21
+ "Homepage" = "https://github.com/pypa/sampleproject"
22
+ "Bug Tracker" = "https://github.com/pypa/sampleproject/issues"
@@ -0,0 +1,3 @@
1
+ from lucas_roque_lib import mod
2
+
3
+ print(mod.add_one(5))