-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpyproject.toml
More file actions
104 lines (89 loc) · 2.26 KB
/
Copy pathpyproject.toml
File metadata and controls
104 lines (89 loc) · 2.26 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[project]
name = "skillport"
version = "1.1.1"
description = "SkillOps CLI for Agent Skills. Manage skills on disk; use skillport-mcp for indexed search."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [{ name = "Gota" }]
keywords = [
"agent-skills", "claude-skills",
"mcp", "model-context-protocol", "mcp-server",
"cursor", "copilot", "codex", "claude-code",
"ai-agent", "context-engineering",
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"skillport-core==1.1.0",
"typer>=0.4.0",
"rich>=10.4.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/skillport_cli"]
[tool.hatch.build.targets.sdist]
include = [
"README.md",
"LICENSE",
]
[dependency-groups]
dev = [
"fastmcp>=2.0.0",
"hypothesis>=6.148.1",
"lancedb>=0.26.0",
"openai>=1.0.0",
"pylance",
"pytest>=9.0.1",
"pytest-asyncio>=1.3.0",
"ruff>=0.14.6",
"tantivy>=0.19.0",
"tomli>=2.0.0",
]
mcp = [
"skillport-mcp==1.1.0",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
filterwarnings = [
"ignore:'_UnionGenericAlias' is deprecated:DeprecationWarning:google.genai.types",
]
[project.urls]
Homepage = "https://github.com/gotalab/skillport"
Repository = "https://github.com/gotalab/skillport"
[project.scripts]
skillport = "skillport.interfaces.cli.app:run"
[tool.uv]
default-groups = ["dev", "mcp"]
[tool.uv.sources]
skillport-core = { workspace = true }
skillport-mcp = { workspace = true }
[tool.uv.workspace]
members = [
"packages/skillport-core",
"packages/skillport-mcp",
]
[tool.ruff]
target-version = "py310"
line-length = 100
exclude = [
".skills",
]
[tool.ruff.lint]
select = ["F", "E", "W", "I", "UP"]
ignore = [
"E501", # line-too-long(formatterに任せる)
]
[tool.ruff.lint.isort]
known-first-party = ["skillport"]