-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathpyproject.toml
63 lines (55 loc) · 1.61 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
56
57
58
59
60
61
62
63
[tool.poetry]
name = "peewee-migrate"
version = "1.13.0"
homepage = "https://github.com/klen/peewee_migrate"
repository = "https://github.com/klen/peewee_migrate"
description = "Support for migrations in Peewee ORM"
readme = "README.rst"
authors = ["Kirill Klenov <[email protected]>"]
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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
[tool.poetry.scripts]
pw_migrate = "peewee_migrate.cli:cli"
pw-migrate = "peewee_migrate.cli:cli"
[tool.poetry.dependencies]
python = "^3.8"
peewee = "^3"
click = "*"
[tool.poetry.group.dev.dependencies]
black = "*"
pre-commit = "*"
psycopg2-binary = "^2.9.5"
pytest = "*"
pytest-mypy = "*"
ruff = "*"
[tool.ruff]
line-length = 100
target-version = "py38"
select = ["ALL"]
ignore = ["ANN", "ARG", "COM", "D", "N", "UP", "S", "SLF", "INP001", "PLR2004"]
[tool.pytest.ini_options]
addopts = "-svx --mypy"
[tool.mypy]
packages = ["peewee_migrate"]
ignore_missing_imports = true
[tool.black]
line-length = 100
target-version = ["py38", "py39", "py310", "py311"]
preview = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"