-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
45 lines (39 loc) · 1.02 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
[project]
name = "kiba-build"
version = "0.1.10"
description = "Kiba Labs' python building and testing utilities"
readme = "README.md"
requires-python = "~=3.11"
dependencies = [
"asyncclick>=8.1.8",
"bandit>=1.8.3",
"bump-my-version>=1.1.1",
"click>=8.1.8",
"isort>=6.0.1",
"mypy>=1.15.0",
"pylint>=3.3.6",
"pytest>=8.3.5",
"pytest-asyncio>=0.26.0",
"pytest-json-report>=1.5.0",
"ruff>=0.11.4",
"simple-chalk>=0.1.0",
"twine>=6.1.0",
"wheel>=0.45.1",
]
[project.urls]
repository = "https://github.com/kibalabs/build-py"
[project.scripts]
lint-check = "buildpy.lint_check:run"
type-check = "buildpy.type_check:run"
security-check = "buildpy.security_check:run"
version = "buildpy.version:run"
test-check = "buildpy.test_check:run"
[tool.uv]
package = true
[build-system]
requires = ["setuptools", "wheel", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
core = ["/py.typed", "**/pyproject.toml"]