-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (41 loc) · 1.06 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (41 loc) · 1.06 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
[build-system]
requires = ["setuptools>=77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "pyvko"
version = "0.1.13"
description = "VK API typed wrapper library"
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "Igor Djachenko" }]
requires-python = ">=3.10"
[project.optional-dependencies]
test = [
"pytest",
"ruff",
"mypy",
]
release = [
"build",
"python-semantic-release",
]
[project.urls]
Homepage = "https://github.com/djachenko/pyvko"
Repository = "https://github.com/djachenko/pyvko"
Issues = "https://github.com/djachenko/pyvko/issues"
[tool.setuptools.packages.find]
where = ["src"]
[[tool.mypy.overrides]]
module = "vk_api.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "pyvko.pyvko_runner"
ignore_errors = true
[tool.semantic_release]
version_toml = ["pyproject.toml:project.version"]
branch = "master"
build_command = "pip install build && python -m build"
changelog_file = "CHANGELOG.md"
commit_message = "chore(release): v{version} [no ci]"
major_on_zero = false
allow_zero_version = true