forked from flipbit03/sqlalchemy-easy-softdelete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
75 lines (70 loc) · 1.58 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
64
65
66
67
68
69
70
71
72
73
74
75
[tool]
[tool.poetry]
name = "sqlalchemy-easy-softdelete"
version = "0.8.3"
homepage = "https://github.com/flipbit03/sqlalchemy-easy-softdelete"
description = "Easily add soft-deletion to your SQLAlchemy Models."
authors = ["Cadu <cadu.coelho@gmail.com>"]
readme = "README.md"
license = "BSD-3-Clause"
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 3.10',
]
packages = [
{ include = "sqlalchemy_easy_softdelete" },
{ include = "tests", format = "sdist" },
]
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
SQLAlchemy = ">=1.4,<2.1"
[tool.poetry.group.dev.dependencies]
snapshottest = "*"
psycopg2 = "^2.9.4"
nox = "^2023.4.22"
black = "^21.5b2"
isort = "^5.8.0"
flake8 = "^3.9.2"
flake8-docstrings = "^1.6.0"
pytest = "^6.2.4"
pytest-cov = "^2.12.0"
virtualenv = "^20.2.2"
pre-commit = "^2.12.0"
bump2version = "^1.0.1"
pip = "*"
sqlparse = "^0.4.4"
[tool.black]
line-length = 120
skip-string-normalization = true
target-version = ['py310']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 120
skip_gitignore = true
# you can skip files as below
#skip_glob = docs/conf.py
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"