-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
42 lines (37 loc) · 1.06 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
[tool.poetry]
name = "pytest-select"
version = "0.1.2"
description = "A pytest plugin which allows to (de-)select tests from a file."
authors = ["Ulrich Petri <[email protected]>"]
repository = "https://github.com/ulope/pytest-select"
readme = "README.rst"
license = "MIT"
keywords = ["pytest", "test", "plugin"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Plugins",
"Framework :: Pytest",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
]
[tool.poetry.dependencies]
python = ">=3.6"
pytest = ">=3.0"
[tool.poetry.dev-dependencies]
black = {version = "^18.3-alpha.0", allows-prereleases = true}
coverage = "^4.0"
flake8 = "^3.6"
flake8-bugbear = "^18.8"
mutmut = "^1.0"
bump2version = "^0.5.10"
[tool.poetry.plugins.pytest11]
pytest-select = "pytest_select.plugin"
[tool.black]
line-length = 99
py36 = true
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"