-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
105 lines (92 loc) · 2.35 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
94
95
96
97
98
99
100
101
102
103
104
105
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "wizard_domaininfo"
version = "0.2.6"
description = "DNS/Whois Domain Information library"
authors = ["Michael Ramsey <[email protected]>"]
license = "MIT License"
readme = "README.md"
repository = "https://github.com/meramsey/wizard-domaininfo"
homepage = "https://github.com/meramsey/wizard-domaininfo"
keywords = ['whois', 'nic', 'domain', 'dns', 'rdap']
packages = [ { include = "wizard_domaininfo", from = "src" } ]
include = [
"README.md",
"pyproject.toml"
]
[tool.poetry.dependencies]
python = "^3.6.1"
aiodns = "^3.0.0"
requests = "^2.26.0"
python-dateutil = "^2.8.2"
atomicwrites = "^1.4.0"
cached-property = "^1.5.2"
contextvars = "^2.4"
immutables = "^0.16"
importlib-metadata = "^4.8.2"
zipp = "^3.6.0"
# A list of all of the optional dependencies, some of which are included in the
# below `extras`. They can be opted into by apps.
ipwhois = "^1.2.0"
[tool.poetry.extras]
ipwhois = ["ipwhois"]
[tool.poetry.dev-dependencies]
# formatting, quality, tests
autoflake = "^1.4"
black = "^20.8b1"
isort = "^5.7.0"
mypy = "^0.812"
pytest = "^6.2.2"
pytest-cov = "^2.11.1"
pytest-randomly = "^3.5.0"
pytest-sugar = "^0.9.4"
pytest-xdist = "^2.2.0"
safety = "^1.10.3"
pre-commit = "^2.10.1"
# tasks
duty = "^0.7.0"
git-changelog = "^0.5.0"
httpx = "^0.22.0"
jinja2-cli = "^0.7.0"
toml = "^0.10.2"
# flake8 plugins
darglint = "^1.5.8"
flake8-bandit = "^2.1.2"
flake8-black = "^0.2.1"
flake8-bugbear = "^20.11.1"
flake8-builtins = "^1.5.3"
flake8-comprehensions = "^3.3.1"
flake8-docstrings = "^1.5.0"
flake8-pytest-style = "^1.3.0"
flake8-string-format = "^0.3.0"
flake8-tidy-imports = "^4.2.1"
flake8-variables-names = "^0.0.4"
pep8-naming = "^0.11.1"
wps-light = "^0.15.2"
# docs
mkdocs = "^1.1.2"
mkdocs-coverage = "^0.2.1"
mkdocs-macros-plugin = "^0.5.0"
mkdocs-material = "^6.2.7"
mkdocstrings = "^0.15.0"
#build
setuptools = "^54.1.0"
wheel = "^0.37.0"
tomlkit = "^0.10.0"
[tool.poetry.scripts]
wizard-domaininfo = "wizard_domaininfo.cli:main"
pwhois = "wizard_domaininfo:pwhois"
[tool.black]
line-length = 120
exclude = "tests/fixtures"
[tool.isort]
line_length = 120
not_skip = "__init__.py"
multi_line_output = 3
force_single_line = false
balanced_wrapping = true
default_section = "THIRDPARTY"
known_first_party = "wizard_domaininfo"
include_trailing_comma = true