-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
94 lines (81 loc) · 2.09 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[project]
name = 'pytest-tipsi-django'
dynamic = ["version"]
description = 'Better fixtures for django'
readme = "README.rst"
authors = [
{ name = 'cybergrind', email = '[email protected]' }
]
keywords = ['pytest', 'pytest-django', 'fixtures', 'transactions', 'scopes']
dependencies = [
'django',
'pytest>=6.0.0',
'pytest-django>=3.10',
'fan-tools>=2.8.1',
'pytest-tipsi-testing>=1.4.3',
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
]
[project.urls]
github = 'https://github.com/tipsi/pytest-tipsi-django'
[project.optional-dependencies]
test = ['coverage', 'pytests']
[tool.hatch.version]
path = "pytest_tipsi_django/__init__.py"
[build-system]
requires = ['setuptools', 'wheel', 'hatchling']
build-backend = 'hatchling.build'
[tool.hatch.build]
exclude = [
'.*',
'.gitignore',
'tox.ini',
'tests',
'test_django_plugin',
'conftest.py',
'Makefile',
]
[tool.hatch.commands]
prerelease = 'hatch build'
[project.entry-points.pytest11]
pytest_tipsi_django = 'pytest_tipsi_django.plugin'
[tool.ruff]
line-length = 100
select = [
"E", # pycodestyle
"F", # pyflakes
"I", # isort
"G", # flake8-logging-format
"ASYNC", # flake8-async
"PIE", # flake8-pie
"T20", # flake8-print
"PT", # flake8-pytest-style
"Q", # flake8-quotes
]
ignore = [
"Q001",
"Q003"
]
[tool.ruff.format]
quote-style = "single"
[tool.ruff.lint.isort]
combine-as-imports = true
known-first-party = ['snapshot_manager']
lines-after-imports = 2
[tool.ruff.lint.flake8-quotes]
docstring-quotes = "double"
inline-quotes = "single"
multiline-quotes = "single"