labric 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.
- labric-0.1.0/.gitignore +10 -0
- labric-0.1.0/.python-version +1 -0
- labric-0.1.0/PKG-INFO +21 -0
- labric-0.1.0/README.md +13 -0
- labric-0.1.0/pyproject.toml +14 -0
- labric-0.1.0/src/labric/__init__.py +2 -0
- labric-0.1.0/src/labric/py.typed +0 -0
labric-0.1.0/.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.13
|
labric-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: labric
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A Python package - more functionality coming soon
|
|
5
|
+
Author-email: Connor <co.hogan12@gmail.com>
|
|
6
|
+
Requires-Python: >=3.13
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
# labric
|
|
10
|
+
|
|
11
|
+
A Python package - more functionality coming soon.
|
|
12
|
+
|
|
13
|
+
## Installation
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
pip install labric
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Usage
|
|
20
|
+
|
|
21
|
+
More details coming soon!
|
labric-0.1.0/README.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "labric"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
description = "A Python package - more functionality coming soon"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
authors = [
|
|
7
|
+
{ name = "Connor", email = "co.hogan12@gmail.com" }
|
|
8
|
+
]
|
|
9
|
+
requires-python = ">=3.13"
|
|
10
|
+
dependencies = []
|
|
11
|
+
|
|
12
|
+
[build-system]
|
|
13
|
+
requires = ["hatchling"]
|
|
14
|
+
build-backend = "hatchling.build"
|
|
File without changes
|