-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (55 loc) · 1.68 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
56
57
58
59
60
61
62
63
[tool.poetry]
name = "alike"
version = "0.1.0"
description = "Loose object comparison for python"
authors = ["Davis Kirkendall <davis.e.kirkendall@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/daviskirk/alike"
repository = "https://github.com/daviskirk/alike"
documentation = "https://github.com/daviskirk/alike"
keywords = ["schema", "compare", "validate", "pytest"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
pytest = "^6.2.1"
isort = "^5.7.0"
flake8 = "^3.8.4"
mypy = "^0.790"
coverage = "^5.3.1"
click = "^7.1.2"
[tool.poetry.plugins."pytest11"]
pytest_alike = "alike.pytest_plugin"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
line_length=88
multi_line_output=3
include_trailing_comma=true
force_grid_wrap=0
use_parentheses=true
[tool.pytest.ini_options]
junit_family="xunit2"
addopts = "--doctest-modules --doctest-glob README.md"
[tool.coverage.run]
branch = true
source = ["src"]
[tool.coverage.report]
show_missing = true