isabellaeatonlib 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,16 @@
1
+ Metadata-Version: 2.4
2
+ Name: isabellaeatonlib
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: Isabella Eaton <ieaton@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
+ # My Example Library
15
+ This is an example package created to learn how PyPI distribution works.
16
+ It contains a simple function that adds one to a given number.
@@ -0,0 +1,3 @@
1
+ # My Example Library
2
+ This is an example package created to learn how PyPI distribution works.
3
+ It contains a simple function that adds one to a given number.
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 = "isabellaeatonlib"
7
+ version = "0.0.1"
8
+ authors = [
9
+ { name="Isabella Eaton", email="ieaton@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 isabellaeaton_lib import mod
2
+
3
+ print(mod.add_one(5))