-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
55 lines (51 loc) · 1.46 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
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "flake8-pytestrail"
version = "0.2.1"
description = "Flake8 plugin to check for missing or wrong TestRail test identifiers"
authors = ["Andrey Semakin <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/and-semakin/flake8-pytestrail"
homepage = "https://github.com/and-semakin/flake8-pytestrail"
keywords = [
"flake8",
"flake8-plugin",
"linting",
"linter",
"code quality",
"test",
"tests",
"testrail",
"pytest"
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: Flake8",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
]
[tool.poetry.plugins."flake8.extension"]
TR = "flake8_pytestrail:PyTestRailChecker"
[tool.poetry.dependencies]
python = "^3.6"
flake8 = ">=3.0.0"
attrs = ">=19.2.0"
[tool.poetry.dev-dependencies]
black = "^19.10b0"
isort = "^4.3.21"
pytest = "^5.4.1"
mypy = "^0.770"