oara 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.
- oara-0.0.0/PKG-INFO +15 -0
- oara-0.0.0/README.md +5 -0
- oara-0.0.0/pyproject.toml +16 -0
- oara-0.0.0/src/oara_placeholder/__init__.py +6 -0
oara-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: oara
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Name reserved for OAra Labs. Not yet released.
|
|
5
|
+
Project-URL: Homepage, https://github.com/OAraLabs/Prometheus
|
|
6
|
+
Author: OAra Labs
|
|
7
|
+
License: MIT
|
|
8
|
+
Requires-Python: >=3.11
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# oara
|
|
12
|
+
|
|
13
|
+
This name is reserved by OAra Labs. It is not yet released, and this placeholder installs no command and nothing usable.
|
|
14
|
+
|
|
15
|
+
The project it is reserved for is Prometheus: https://github.com/OAraLabs/Prometheus
|
oara-0.0.0/README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "oara"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Name reserved for OAra Labs. Not yet released."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.11"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [{ name = "OAra Labs" }]
|
|
13
|
+
urls = { Homepage = "https://github.com/OAraLabs/Prometheus" }
|
|
14
|
+
|
|
15
|
+
[tool.hatch.build.targets.wheel]
|
|
16
|
+
packages = ["src/oara_placeholder"]
|