-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
93 lines (82 loc) · 2.08 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[tool.poetry]
name = "osr-dashboard"
version = "0.0.1"
description = "A dashboard for reporting OSR projects"
authors = [
"Benjamin Perseghetti <bperseghetti@rudislabs.com>",
"Michael Carroll <mjcarroll@intrinsic.ai>",
]
license = "Apache-2.0"
readme = "README.md"
documentation = "https://osrf.github.io/osr_dashboard/"
homepage = "https://osrf.github.io/osr_dashboard"
repository = "https://github.com/osrf/osr_dashboard"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
packages = [
{ include = "osr_dashboard", from = "src" }
]
[tool.poetry.dependencies]
python = ">=3.7.1, <4.0"
requests = "*"
vcstool = "*"
ghapi = "*"
[tool.poetry.dev-dependencies]
autoflake = "*"
black = "*"
flake8 = "*"
flake8-bugbear = "*"
flake8-builtins = "*"
flake8-comprehensions = "*"
flake8-debugger = "*"
flake8-eradicate = "*"
flake8-logging-format = "*"
isort = "*"
mkdocstrings = "*"
mkdocs-material = "*"
mypy = "*"
pep8-naming = "*"
pre-commit = "*"
pymdown-extensions = "*"
pytest = "*"
pytest-github-actions-annotate-failures = "*"
pytest-cov = "*"
python-kacl = "*"
pyupgrade = "*"
tryceratops = "*"
[tool.poetry.scripts]
sync = 'osr_dashboard.command.sync:sync'
compute = 'osr_dashboard.command.compute:compute'
serve = 'osr_dashboard.command.serve:serve'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
src_paths = ["src", "tests"]
[tool.black]
target-version = ["py37", "py38", "py39"]
include = '\.pyi?$'
[tool.pytest.ini_options]
addopts = """\
--cov osr_dashboard \
--cov tests \
--cov-report term-missing \
--no-cov-on-fail \
"""
[tool.coverage.report]
#fail_under = 100
exclude_lines = [
'if TYPE_CHECKING:',
'pragma: no cover'
]