forked from lmann99/hover-dns-updater
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (33 loc) · 978 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
[tool.poetry]
name = "hover-dns-updater"
version = "0.1.0"
description = "Update DNS entry on hover.com"
authors = ["Mark Silva <github3@markesilva.com>"]
license = "GPL"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.31.0"
pyopenssl = "^23.2.0"
pyotp = "^2.8.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
pep8-naming = "^0.13.3"
black = "^23.3.0"
sphinx = "^7.0.1"
pyproject-flake8 = "^6.0.0.post1"
[tool.pytest.ini_options]
addopts = "--cov-report term --cov-report xml --verbose --doctest-modules"
testpaths = ["hover-dns-updater.py"]
[tool.flake8]
show_source = true
# We recommend setting your editor's visual guide to 79 but allow overflow to
# 120 for readability in certain cases
max_line_length = 120
extend-exclude = ["__pycache__"]
# H903: Windows style line endings not allowed in code
extend-ignore = ["H903"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"