generated from ImperialCollegeLondon/poetry_template_2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (39 loc) · 1.02 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
[tool.poetry]
name = "Imperial College London RSE bot"
version = "0.1.0"
description = ""
authors = ["Alex Dewar <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.11"
githubkit = "^0.10.7"
asyncio = "^3.4.3"
jinja2 = "^3.1.2"
pyyaml = "^6.0.1"
[tool.poetry.dev-dependencies]
pytest = "^7.4"
pytest-cov = "^4.0.0"
pytest-mypy = "^0.10.0"
pytest-mock = "^3.7.0"
isort = "^5.10.1"
pre-commit = "^3.4.0"
black = "^23.9.1"
flake8 = "^6.0.0"
flake8-docstrings = "^1.6.0"
[tool.poetry.group.dev.dependencies]
types-pyyaml = "^6.0.12.11"
[tool.mypy]
disallow_any_generics = true
warn_unreachable = true
warn_unused_ignores = true
disallow_untyped_defs = true
exclude = [".venv/"]
[[tool.mypy.overrides]]
module = "tests.*"
disallow_untyped_defs = false
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
addopts = "-v --mypy -p no:warnings --cov=ic_rse_bot --cov-report=html --doctest-modules --ignore=ic_rse_bot/__main__.py"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"