library-skills 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.
@@ -0,0 +1,10 @@
1
+ Metadata-Version: 2.3
2
+ Name: library-skills
3
+ Version: 0.0.1
4
+ Summary: Library Agent Skills
5
+ Author: Sebastián Ramírez
6
+ Author-email: Sebastián Ramírez <tiangolo@gmail.com>
7
+ Requires-Python: >=3.10
8
+ Description-Content-Type: text/markdown
9
+
10
+ # Library Agent Skills
@@ -0,0 +1 @@
1
+ # Library Agent Skills
@@ -0,0 +1,17 @@
1
+ [project]
2
+ name = "library-skills"
3
+ version = "0.0.1"
4
+ description = "Library Agent Skills"
5
+ readme = "README.md"
6
+ authors = [
7
+ { name = "Sebastián Ramírez", email = "tiangolo@gmail.com" }
8
+ ]
9
+ requires-python = ">=3.10"
10
+ dependencies = []
11
+
12
+ [project.scripts]
13
+ library-skills = "library_skills:main"
14
+
15
+ [build-system]
16
+ requires = ["uv_build>=0.9.11,<0.10.0"]
17
+ build-backend = "uv_build"
File without changes
@@ -0,0 +1,3 @@
1
+ from .cli import main
2
+
3
+ main()
@@ -0,0 +1,2 @@
1
+ def main():
2
+ print("library-skills!")