kst 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.
kst-0.1.0/.gitignore ADDED
@@ -0,0 +1,10 @@
1
+ # Python-generated files
2
+ __pycache__/
3
+ *.py[oc]
4
+ build/
5
+ dist/
6
+ wheels/
7
+ *.egg-info
8
+
9
+ # Virtual environments
10
+ .venv
@@ -0,0 +1 @@
1
+ 3.13
kst-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,6 @@
1
+ Metadata-Version: 2.4
2
+ Name: kst
3
+ Version: 0.1.0
4
+ Summary: Add your description here
5
+ Author-email: Trent Oliver <trent.oliver@kandji.io>
6
+ Requires-Python: >=3.13
kst-0.1.0/README.md ADDED
File without changes
@@ -0,0 +1,17 @@
1
+ [project]
2
+ name = "kst"
3
+ version = "0.1.0"
4
+ description = "Add your description here"
5
+ readme = "README.md"
6
+ authors = [
7
+ { name = "Trent Oliver", email = "trent.oliver@kandji.io" }
8
+ ]
9
+ requires-python = ">=3.13"
10
+ dependencies = []
11
+
12
+ [project.scripts]
13
+ kst = "kst:main"
14
+
15
+ [build-system]
16
+ requires = ["hatchling"]
17
+ build-backend = "hatchling.build"
@@ -0,0 +1,2 @@
1
+ def main() -> None:
2
+ print("Hello from kst!")
kst-0.1.0/uv.lock ADDED
@@ -0,0 +1,7 @@
1
+ version = 1
2
+ requires-python = ">=3.13"
3
+
4
+ [[package]]
5
+ name = "kst"
6
+ version = "0.1.0"
7
+ source = { editable = "." }