-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (37 loc) · 1000 Bytes
/
pyproject.toml
File metadata and controls
45 lines (37 loc) · 1000 Bytes
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
[project]
name = "uvpkg"
version = "0.1.0"
description = "Universal AI coding package manager - Python/UV reimplementation of openpackage"
readme = "README.md"
authors = [{ name = "moo", email = "will@dreadnode.io" }]
requires-python = ">=3.11"
license = "Apache-2.0"
keywords = ["ai", "coding", "package-manager", "claude", "cursor", "windsurf"]
dependencies = [
"pydantic>=2.0.0",
"pyyaml>=6.0",
"click>=8.0.0",
"rich>=13.0.0",
"gitpython>=3.1.0",
"tomlkit>=0.12.0",
"jsonpath-ng>=1.6.0",
]
[project.scripts]
uvpkg = "uvpkg.cli:main"
[project.urls]
Homepage = "https://github.com/dreadnode/uvpkg"
Repository = "https://github.com/dreadnode/uvpkg"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/uvpkg"]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.11"
strict = true