forked from AnalogJ/lexicon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
78 lines (73 loc) · 2.19 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
[build-system]
requires = [
"poetry>=0.12",
]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "dns-lexicon"
version = "3.4.0"
description = "Manipulate DNS records on various DNS providers in a standardized/agnostic way"
license = "MIT"
keywords = [
"dns", "lexicon", "dns-lexicon", "dehydrated", "letsencrypt",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: Name Service (DNS)",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
]
authors = [
"Jason Kulatunga", "Adrien Ferrand"
]
readme = "README.rst"
repository = "https://github.com/AnalogJ/lexicon"
packages = [
{ include = "lexicon" },
]
[tool.poetry.dependencies]
python = "^3.6"
tldextract = "^2.2.2"
future = "^0.18.2"
cryptography = "^3.0"
pyyaml = "^5.3.1"
requests = { version = "^2.24.0" }
beautifulsoup4 = "^4.9.1"
# Optional dependencies required by some providers
pynamecheap = { version = "^0.0.3", optional = true }
boto3 = { version = "^1.14.28", optional = true }
transip = { version = "^2.1.2", optional = true }
xmltodict = { version = "^0.12.0", optional = true }
localzone = { version = "^0.9.6", optional = true }
softlayer = {version = "^5.8.9", optional = true}
zeep = { version = "^3.4.0", optional = true }
[tool.poetry.extras]
namecheap = ["pynamecheap"]
route53 = ["boto3"]
transip = ["transip"]
plesk = ["xmltodict"]
localzone = ["localzone"]
softlayer = ["softlayer"]
gransy = ["zeep"]
# Extra "full" list must contain all other extras
full = ["pynamecheap", "boto3", "transip", "xmltodict", "localzone", "softlayer", "zeep"]
[tool.poetry.dev-dependencies]
pytest = "^6.0.1"
pytest-cov = "^2.10.0"
pytest-xdist = "^1.33.0"
vcrpy = "^4.1.0"
mock = "^4.0"
flake8 = "^3.8.3"
isort = "^5.4.2"
tox = "^3.18.0"
black = "^19.10b0"
[tool.poetry.scripts]
lexicon = "lexicon.cli:main"