-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
37 lines (34 loc) · 988 Bytes
/
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
[tool.poetry]
name = "expycted"
version = "0.8.2"
description = "Because tests should be easy to read"
authors = [
"Dov Benyomin Sohacheski",
"Petereon <[email protected]>"
]
license = "MIT"
repository = 'https://github.com/bdsoha/expycted'
readme = 'PYPIREADME.md'
keywords = ['expect', 'expect-pattern', 'testing', 'test', 'matchers']
classifiers = [
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Natural Language :: English',
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Libraries',
'Typing :: Typed'
]
packages = [
{ include = "expycted", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.6"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
python_files = ["*test*.py"]
python_functions = ["test"]
minversion = "6.0"
addopts = "--pspec --cov=expycted --cov-report=term-missing"
testpaths = ["test"]