example-package-gradientgrove 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.
File without changes
@@ -0,0 +1,29 @@
1
+ Metadata-Version: 2.4
2
+ Name: example_package_gradientgrove
3
+ Version: 0.0.1
4
+ Summary: A small example package
5
+ Author-email: Example Author <author@example.com>
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/pypa/sampleproject
8
+ Project-URL: Issues, https://github.com/pypa/sampleproject/issues
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.9
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Dynamic: license-file
15
+
16
+ # Example Package
17
+
18
+ [Python Packaging User Guide](https://packaging.python.org/en/latest/tutorials/packaging-projects/)
19
+
20
+ 1. Directory structure
21
+ 2. `pyproject.toml`
22
+ 3. License
23
+ 4. Generate distribution archives
24
+
25
+ In the directory containing `pyproject.toml` run
26
+ ```
27
+ python3 -m pip install --upgrade build
28
+ python3 -m build
29
+ ```
@@ -0,0 +1,14 @@
1
+ # Example Package
2
+
3
+ [Python Packaging User Guide](https://packaging.python.org/en/latest/tutorials/packaging-projects/)
4
+
5
+ 1. Directory structure
6
+ 2. `pyproject.toml`
7
+ 3. License
8
+ 4. Generate distribution archives
9
+
10
+ In the directory containing `pyproject.toml` run
11
+ ```
12
+ python3 -m pip install --upgrade build
13
+ python3 -m build
14
+ ```
@@ -0,0 +1,23 @@
1
+ [build-system]
2
+ requires = ["setuptools >= 77.0.3"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "example_package_gradientgrove"
7
+ version = "0.0.1"
8
+ authors = [
9
+ { name="Example Author", email="author@example.com" },
10
+ ]
11
+ description = "A small example package"
12
+ readme = "README.md"
13
+ requires-python = ">=3.9"
14
+ classifiers = [
15
+ "Programming Language :: Python :: 3",
16
+ "Operating System :: OS Independent",
17
+ ]
18
+ license = "MIT"
19
+ license-files = ["LICEN[CS]E*"]
20
+
21
+ [project.urls]
22
+ Homepage = "https://github.com/pypa/sampleproject"
23
+ Issues = "https://github.com/pypa/sampleproject/issues"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
File without changes
@@ -0,0 +1,2 @@
1
+ def add_one(number):
2
+ return number + 1
@@ -0,0 +1,29 @@
1
+ Metadata-Version: 2.4
2
+ Name: example_package_gradientgrove
3
+ Version: 0.0.1
4
+ Summary: A small example package
5
+ Author-email: Example Author <author@example.com>
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/pypa/sampleproject
8
+ Project-URL: Issues, https://github.com/pypa/sampleproject/issues
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.9
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Dynamic: license-file
15
+
16
+ # Example Package
17
+
18
+ [Python Packaging User Guide](https://packaging.python.org/en/latest/tutorials/packaging-projects/)
19
+
20
+ 1. Directory structure
21
+ 2. `pyproject.toml`
22
+ 3. License
23
+ 4. Generate distribution archives
24
+
25
+ In the directory containing `pyproject.toml` run
26
+ ```
27
+ python3 -m pip install --upgrade build
28
+ python3 -m build
29
+ ```
@@ -0,0 +1,9 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ src/__init__.py
5
+ src/example.py
6
+ src/example_package_gradientgrove.egg-info/PKG-INFO
7
+ src/example_package_gradientgrove.egg-info/SOURCES.txt
8
+ src/example_package_gradientgrove.egg-info/dependency_links.txt
9
+ src/example_package_gradientgrove.egg-info/top_level.txt