-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
47 lines (39 loc) · 971 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
38
39
40
41
42
43
44
45
46
47
[tool.poetry]
authors = ["abersheeran <[email protected]>"]
description = ""
license = "Apache-2.0"
name = "cool"
readme = "README.md"
version = "0.4.0"
homepage = "https://github.com/abersheeran/cool"
repository = "https://github.com/abersheeran/cool"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: Implementation :: CPython",
]
packages = [
{include = "cool"},
]
[tool.poetry.dependencies]
python = "~2.7 || ^3.5"
[tool.poetry.dev-dependencies]
black = {version = "*", allow-prereleases = true}
flake8 = "*"
pytest = "^5.4.3"
pytest-cov = "^2.11.1"
[tool.coverage.run]
omit = ["*/.venv/*", "*/tests/*"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError",
"if False:",
"assert False",
]
show_missing = true
skip_covered = true
[build-system]
build-backend = "poetry.masonry.api"
requires = ["poetry>=0.12"]