sentinel-shared-python 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
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.1
2
+ Name: sentinel_shared_python
3
+ Version: 0.1.0
4
+ Summary: A collection of shared utility functions for Sentinel devices
5
+ Author-email: Brandon Asheim <brandon@conservationxlabs.org>
6
+ Classifier: Programming Language :: Python :: 3
7
+ Classifier: License :: OSI Approved :: MIT License
8
+ Classifier: Operating System :: OS Independent
9
+ Requires-Python: >=3.7
10
+ Description-Content-Type: text/markdown
11
+ License-File: LICENSE
File without changes
@@ -0,0 +1,21 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "sentinel_shared_python"
7
+ version = "0.1.0"
8
+ authors = [
9
+ { name="Brandon Asheim", email="brandon@conservationxlabs.org" },
10
+ ]
11
+ description = "A collection of shared utility functions for Sentinel devices"
12
+ readme = "README.md"
13
+ requires-python = ">=3.7"
14
+ classifiers = [
15
+ "Programming Language :: Python :: 3",
16
+ "License :: OSI Approved :: MIT License",
17
+ "Operating System :: OS Independent",
18
+ ]
19
+
20
+ [tool.setuptools.packages.find]
21
+ where = ["src"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1 @@
1
+ from .utils import greet
@@ -0,0 +1,2 @@
1
+ def greet(name):
2
+ return f"Hello, {name}! This is from the shared library."
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.1
2
+ Name: sentinel-shared-python
3
+ Version: 0.1.0
4
+ Summary: A collection of shared utility functions for Sentinel devices
5
+ Author-email: Brandon Asheim <brandon@conservationxlabs.org>
6
+ Classifier: Programming Language :: Python :: 3
7
+ Classifier: License :: OSI Approved :: MIT License
8
+ Classifier: Operating System :: OS Independent
9
+ Requires-Python: >=3.7
10
+ Description-Content-Type: text/markdown
11
+ License-File: LICENSE
@@ -0,0 +1,9 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ src/sentinel_shared_python/__init__.py
5
+ src/sentinel_shared_python/utils.py
6
+ src/sentinel_shared_python.egg-info/PKG-INFO
7
+ src/sentinel_shared_python.egg-info/SOURCES.txt
8
+ src/sentinel_shared_python.egg-info/dependency_links.txt
9
+ src/sentinel_shared_python.egg-info/top_level.txt