-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (60 loc) · 1.89 KB
/
pyproject.toml
File metadata and controls
72 lines (60 loc) · 1.89 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
[project]
name = "peewee-migrate"
version = "1.15.0"
description = "Support for migrations in Peewee ORM"
authors = [{ name = "Kirill Klenov", email = "horneds@gmail.com" }]
requires-python = ">=3.10,<4"
readme = "README.rst"
license = "MIT"
keywords = ["peewee", "migrations", "orm"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
dependencies = ["peewee", "click"]
[project.urls]
Homepage = "https://github.com/klen/peewee_migrate"
Repository = "https://github.com/klen/peewee_migrate"
[project.scripts]
pw_migrate = "peewee_migrate.cli:cli"
pw-migrate = "peewee_migrate.cli:cli"
[dependency-groups]
dev = ["pre-commit", "psycopg2-binary", "pytest", "ruff", "pyrefly"]
[build-system]
requires = ["uv_build>=0.10.2,<0.11.0"]
build-backend = "uv_build"
[tool.uv]
default-groups = "all"
[tool.uv.build-backend]
module-name = "peewee_migrate"
module-root = ""
[tool.ruff]
include = ["peewee_migrate/*", "tests/**/*"]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["ALL"]
ignore = ["ANN", "ARG", "COM", "D", "N", "UP", "S", "SLF", "INP001", "PLR2004", "TD", "FIX"]
[tool.pyrefly]
project-includes = ["peewee_migrate"]
project-excludes = ["tests", "pyproject.toml"]
[tool.pytest.ini_options]
addopts = "-svx"
[tool.bumpversion]
current_version = "1.15.0"
commit = false
tag = false
[[tool.bumpversion.files]]
filename = "pyproject.toml"
search = 'version = "{current_version}"'
replace = 'version = "{new_version}"'