luplo 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.
- luplo-0.0.1/PKG-INFO +17 -0
- luplo-0.0.1/README.md +7 -0
- luplo-0.0.1/pyproject.toml +16 -0
- luplo-0.0.1/src/luplo/__init__.py +1 -0
luplo-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: luplo
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Long-term memory for engineering decisions.
|
|
5
|
+
Project-URL: Homepage, https://github.com/luplo-io/cli
|
|
6
|
+
Author: hanyul99
|
|
7
|
+
License: AGPL-3.0-or-later
|
|
8
|
+
Requires-Python: >=3.10
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# luplo
|
|
12
|
+
|
|
13
|
+
Long-term memory for engineering decisions.
|
|
14
|
+
|
|
15
|
+
Reserved package. Full release coming soon.
|
|
16
|
+
|
|
17
|
+
See https://github.com/luplo-io/cli
|
luplo-0.0.1/README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "luplo"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "Long-term memory for engineering decisions."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.10"
|
|
7
|
+
license = { text = "AGPL-3.0-or-later" }
|
|
8
|
+
authors = [{ name = "hanyul99" }]
|
|
9
|
+
urls = { Homepage = "https://github.com/luplo-io/cli" }
|
|
10
|
+
|
|
11
|
+
[build-system]
|
|
12
|
+
requires = ["hatchling"]
|
|
13
|
+
build-backend = "hatchling.build"
|
|
14
|
+
|
|
15
|
+
[tool.hatch.build.targets.wheel]
|
|
16
|
+
packages = ["src/luplo"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.1"
|