-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (57 loc) · 1.54 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
[project]
name = 'django-findreplace'
version = '0.2'
description = 'Django Find Replace'
readme = 'README.md'
maintainers = [{ name = 'The Developer Society', email = '[email protected]' }]
requires-python = '>= 3.9'
dependencies = [
'Django>=3.2',
]
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Framework :: Django',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.2',
]
[project.urls]
Homepage = "https://github.com/developersociety/django-findreplace"
[build-system]
requires = ['setuptools >= 61.0']
build-backend = 'setuptools.build_meta'
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
include = ['findreplace*']
[tool.ruff]
line-length = 99
target-version = 'py39'
[tool.ruff.lint]
select = [
'F', # pyflakes
'E', # pycodestyle
'W', # pycodestyle
'I', # isort
'N', # pep8-naming
'UP', # pyupgrade
'S', # flake8-bandit
'BLE', # flake8-blind-except
'C4', # flake8-comprehensions
'EM', # flake8-errmsg
'T20', # flake8-print
'RET', # flake8-return
'RUF', # ruff
]
ignore = [
'EM101', # flake8-errmsg: raw-string-in-exception
]
[tool.ruff.lint.isort]
combine-as-imports = true