-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
122 lines (111 loc) · 2.74 KB
/
Copy pathpyproject.toml
File metadata and controls
122 lines (111 loc) · 2.74 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "vercel-templates-discovery"
version = "1.0.0"
description = "Agentic CLI for discovering and searching Vercel Templates"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "Kenny", email = "kenny@example.com"}
]
keywords = ["vercel", "templates", "cli", "agentic", "scraping", "discovery"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
dependencies = [
"requests>=2.31.0",
"beautifulsoup4>=4.12.0",
"typer>=0.12.0",
"rich>=13.7.0",
"python-dotenv>=1.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-cov>=5.0.0",
"ruff>=0.4.0",
"mypy>=1.10.0",
"responses>=0.25.0",
"types-requests>=2.31.0",
"types-beautifulsoup4>=4.12.0",
"httpx>=0.27.0",
"fastapi>=0.110.0",
"uvicorn[standard]>=0.29.0",
"build>=1.0.0",
"twine>=5.0.0",
"sqlite-vec>=0.1.0",
"numpy>=1.26.0",
]
server = [
"fastapi>=0.110.0",
"uvicorn[standard]>=0.29.0",
]
semantic = [
"sqlite-vec>=0.1.0",
"numpy>=1.26.0",
]
offline = [
"sentence-transformers>=3.0.0",
"numpy>=1.26.0",
]
[project.scripts]
vercel-templates = "vercel_templates.cli:app"
vercel-templates-mcp = "vercel_templates.mcp_server:main"
[project.urls]
Homepage = "https://github.com/imKXNNY/vercel-templates-discovery"
Repository = "https://github.com/imKXNNY/vercel-templates-discovery"
Issues = "https://github.com/imKXNNY/vercel-templates-discovery/issues"
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.lint]
select = [
"E",
"F",
"I",
"N",
"W",
"UP",
"B",
"C4",
"SIM",
"T20",
]
ignore = ["E501"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.mypy]
python_version = "3.12"
strict = true
warn_return_any = true
warn_unused_ignores = true
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "vercel_templates.cli"
ignore_missing_imports = true
ignore_errors = true
[[tool.mypy.overrides]]
module = "vercel_templates.server"
ignore_missing_imports = true
disallow_untyped_decorators = false
[[tool.mypy.overrides]]
module = "tests.*"
ignore_missing_imports = true
ignore_errors = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "--strict-markers"
[tool.hatch.build.targets.wheel]
packages = ["vercel_templates"]