-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpyproject.toml
54 lines (48 loc) · 1.42 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
[tool.poetry]
name = "pytest-isort"
version = "4.0.0"
description = "py.test plugin to check import ordering using isort"
authors = [
"Stephan Jaekel <[email protected]>",
"Moccu GmbH Co KG <[email protected]>",
]
license = "MIT"
readme = "README.rst"
homepage = 'https://github.com/stephrdev/pytest-isort'
repository = 'https://github.com/stephrdev/pytest-isort'
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Testing",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"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",
"Framework :: Pytest",
]
packages = [{ include = "pytest_isort" }]
[tool.poetry.plugins.pytest11]
isort = "pytest_isort"
[tool.poetry.dependencies]
python = ">=3.8,<4"
pytest = ">=5.0"
isort = ">=4.0"
[tool.poetry.dev-dependencies]
pytest = ">=6.2"
pytest-flake8 = ">=1.0"
pytest-black = ">=0.3"
flake8 = "4.0.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 96
skip-string-normalization = true
skip-numeric-underscore-normalization = true
include = "\\.pyi?$"
exclude = "/(\\.git|\\.tox|build|dist)/"