puxti 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.
- puxti-0.0.1/PKG-INFO +19 -0
- puxti-0.0.1/README.md +11 -0
- puxti-0.0.1/pyproject.toml +11 -0
- puxti-0.0.1/src/puxti/__init__.py +5 -0
puxti-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: puxti
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Organizational knowledge layer for data teams
|
|
5
|
+
License: Proprietary
|
|
6
|
+
Requires-Python: >=3.12
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
# puxti
|
|
10
|
+
|
|
11
|
+
Organizational knowledge layer for data teams.
|
|
12
|
+
|
|
13
|
+
This package is distributed privately. If you are a design partner, install via:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
pip install puxti --index-url https://pip.pkg.github.com/sebastianvillarroel/
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Contact puxti@okolico.com for access.
|
puxti-0.0.1/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# puxti
|
|
2
|
+
|
|
3
|
+
Organizational knowledge layer for data teams.
|
|
4
|
+
|
|
5
|
+
This package is distributed privately. If you are a design partner, install via:
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install puxti --index-url https://pip.pkg.github.com/sebastianvillarroel/
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Contact puxti@okolico.com for access.
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "puxti"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "Organizational knowledge layer for data teams"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.12"
|
|
7
|
+
license = { text = "Proprietary" }
|
|
8
|
+
|
|
9
|
+
[build-system]
|
|
10
|
+
requires = ["hatchling"]
|
|
11
|
+
build-backend = "hatchling.build"
|