-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
55 lines (50 loc) · 1.36 KB
/
pyproject.toml
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
[project]
name = "packse"
version = "0.0.0"
description = ""
authors = [{ name = "Astral Software Inc.", email = "[email protected]" }]
readme = "README.md"
keywords = [
"uv", "packse", "requirements", "packaging", "testing"
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Libraries",
]
requires-python = ">=3.12"
dependencies = [
"msgspec>=0.18.4",
"hatchling>=1.20.0",
"chevron-blue>=0.2.1",
"setuptools>=69.1.1",
"pyyaml>=6.0.1",
"uv>=0.4.17",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
packse = "packse.cli:entrypoint"
[project.optional-dependencies]
index = ["pypiserver>=2.0.1"]
serve = ["packse[index]", "watchfiles>=0.21.0"]
[tool.uv]
dev-dependencies = [
"syrupy>=4.6.0",
"pytest>=7.4.3",
"psutil>=5.9.7",
]
[tool.ruff.lint]
extend-select = ["I", "W292"]
preview = true
exclude = ["src/packse/templates/**/*", "build/**/*", "dist/**/*"]