-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
47 lines (41 loc) · 1.31 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
[tool.poetry]
name = "dlint"
version = "0.16.0"
description = "Dlint is a tool for encouraging best coding practices and helping ensure Python code is secure."
authors = []
license = "BSD-3-Clause"
readme = "README.md"
repository = "https://github.com/dlint-py/dlint"
homepage = "https://github.com/dlint-py/dlint"
packages = [{include = "dlint"}]
classifiers = [
'Environment :: Console',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.9',
'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 :: Security',
'Topic :: Software Development :: Quality Assurance',
]
[tool.poetry.dependencies]
python = "^3.8.1"
flake8 = ">=3.6.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.0"
pytest-cov = "^5.0.0"
pytest-benchmark = "^4.0.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.plugins."flake8.extension"]
DUO = "dlint.extension:Flake8Extension"
[tool.coverage.run]
source = ["dlint"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"