-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "lapsh"
version = "0.7.0"
description = "Lean API Platform -- Token-efficient API specs for AI agents"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.10"
authors = [
{ name = "LAP Contributors" },
]
keywords = ["api", "openapi", "ai", "llm", "agents", "compression", "platform"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Documentation",
]
dependencies = ["pyyaml>=6.0", "tiktoken>=0.5.0", "graphql-core>=3.2.0"]
[project.optional-dependencies]
dev = ["pytest", "pytest-timeout", "rich", "graphql-core", "tiktoken", "build", "twine"]
[project.scripts]
lapsh = "lap.cli.main:main"
[project.urls]
Homepage = "https://github.com/Lap-Platform/lap"
Documentation = "https://github.com/Lap-Platform/lap#readme"
Repository = "https://github.com/Lap-Platform/lap"
Issues = "https://github.com/Lap-Platform/lap/issues"
Changelog = "https://github.com/Lap-Platform/lap/blob/main/CHANGELOG.md"
[tool.setuptools.package-data]
lap = ["skills/**/*.md", "skills/**/*.mdc"]
[tool.setuptools.packages.find]
include = ["lap*"]