portomatic 0.0.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.
@@ -0,0 +1,17 @@
1
+ Metadata-Version: 2.4
2
+ Name: portomatic
3
+ Version: 0.0.0
4
+ Summary: Official Portomatic package namespace.
5
+ Author-email: Portomatic <social@portomatic.com>
6
+ Project-URL: Homepage, https://portomatic.com
7
+ Project-URL: Repository, https://github.com/portomatic/portomatic
8
+ Keywords: portomatic,developer-tools
9
+ Requires-Python: >=3.9
10
+ Description-Content-Type: text/markdown
11
+
12
+ # portomatic
13
+
14
+ This is the official Python package namespace for [Portomatic](https://portomatic.com).
15
+
16
+ The `0.0.0` release establishes the namespace. Product functionality will be added in a future release.
17
+
@@ -0,0 +1,6 @@
1
+ # portomatic
2
+
3
+ This is the official Python package namespace for [Portomatic](https://portomatic.com).
4
+
5
+ The `0.0.0` release establishes the namespace. Product functionality will be added in a future release.
6
+
@@ -0,0 +1,25 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "portomatic"
7
+ version = "0.0.0"
8
+ description = "Official Portomatic package namespace."
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ authors = [
12
+ { name = "Portomatic", email = "social@portomatic.com" }
13
+ ]
14
+ keywords = ["portomatic", "developer-tools"]
15
+
16
+ [project.urls]
17
+ Homepage = "https://portomatic.com"
18
+ Repository = "https://github.com/portomatic/portomatic"
19
+
20
+ [tool.setuptools]
21
+ package-dir = {"" = "src"}
22
+
23
+ [tool.setuptools.packages.find]
24
+ where = ["src"]
25
+
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,9 @@
1
+ """Official Portomatic Python package namespace."""
2
+
3
+ __version__ = "0.0.0"
4
+
5
+
6
+ def about() -> dict[str, str]:
7
+ """Return basic package metadata."""
8
+ return {"name": "portomatic", "version": __version__}
9
+
@@ -0,0 +1,17 @@
1
+ Metadata-Version: 2.4
2
+ Name: portomatic
3
+ Version: 0.0.0
4
+ Summary: Official Portomatic package namespace.
5
+ Author-email: Portomatic <social@portomatic.com>
6
+ Project-URL: Homepage, https://portomatic.com
7
+ Project-URL: Repository, https://github.com/portomatic/portomatic
8
+ Keywords: portomatic,developer-tools
9
+ Requires-Python: >=3.9
10
+ Description-Content-Type: text/markdown
11
+
12
+ # portomatic
13
+
14
+ This is the official Python package namespace for [Portomatic](https://portomatic.com).
15
+
16
+ The `0.0.0` release establishes the namespace. Product functionality will be added in a future release.
17
+
@@ -0,0 +1,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/portomatic/__init__.py
4
+ src/portomatic.egg-info/PKG-INFO
5
+ src/portomatic.egg-info/SOURCES.txt
6
+ src/portomatic.egg-info/dependency_links.txt
7
+ src/portomatic.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ portomatic