forked from adrienbrignon/cloudflare-ddns
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
46 lines (41 loc) · 1.05 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
[tool.poetry]
name = "cloudflare-ddns"
version = "1.0.0"
description = "A Dynamic DNS updater for cloudflare"
authors = ["Steven Marks <[email protected]>"]
license = "MIT"
readme = "README.md"
keywords = ["cloudflare", "ddns", "dynamic", "dns"]
homepage = "https://github.com/totaldebug/cloudflare-dns"
repository = "https://github.com/totaldebug/cloudflare-dns"
documentation = "https://docs.totaldebug.uk/pyarr"
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.21.0"
PyYAML = "^5.3.1"
[tool.poetry.dev-dependencies]
black = {version = "^20.8b1", allow-prereleases = true}
flake8 = "^3.8.4"
[tool.black]
line-length = 88
target_version = ['py38']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
)
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"