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.
- sentinel_shared_python-0.1.0/LICENSE +0 -0
- sentinel_shared_python-0.1.0/PKG-INFO +11 -0
- sentinel_shared_python-0.1.0/README.md +0 -0
- sentinel_shared_python-0.1.0/pyproject.toml +21 -0
- sentinel_shared_python-0.1.0/setup.cfg +4 -0
- sentinel_shared_python-0.1.0/src/sentinel_shared_python/__init__.py +1 -0
- sentinel_shared_python-0.1.0/src/sentinel_shared_python/utils.py +2 -0
- sentinel_shared_python-0.1.0/src/sentinel_shared_python.egg-info/PKG-INFO +11 -0
- sentinel_shared_python-0.1.0/src/sentinel_shared_python.egg-info/SOURCES.txt +9 -0
- sentinel_shared_python-0.1.0/src/sentinel_shared_python.egg-info/dependency_links.txt +1 -0
- sentinel_shared_python-0.1.0/src/sentinel_shared_python.egg-info/top_level.txt +1 -0
|
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 @@
|
|
|
1
|
+
from .utils import greet
|
|
@@ -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
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
sentinel_shared_python
|