This repository has been archived by the owner on Dec 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
83 lines (74 loc) · 1.62 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
[tool.poetry]
name = "rfcdl"
version = "1.2.9"
description = "A tool for downloading RFCs in high-speed."
license = "MIT"
authors = ["eikendev <raphael@eiken.dev>"]
readme = "README.md"
keywords = ["rfc", "downloader", "cli"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
"Environment :: Console",
"Operating System :: POSIX",
]
packages = [
{ include = "rfcdl" }
]
[tool.poetry.scripts]
rfcdl = "rfcdl.rfcdl:main"
[tool.poetry.urls]
"homepage" = "https://pypi.python.org/pypi/rfcdl"
[tool.poetry.dependencies]
aiofiles = "^0.7"
aiohttp = "^3"
python = "^3.9"
requests = "^2"
[tool.poetry.dev-dependencies]
black = "^21.8b0"
flake8 = "^3.9.2"
isort = "^5.9.3"
mypy = "^0.910"
types-aiofiles = "^0.1.9"
types-requests = "^2.25.6"
vulture = "^2.3"
pytest = "^6.2.5"
copr = "^1.112"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
single-quote = true
target-version = ['py39']
exclude = '''
/(
\.git
| \.mypy_cache
| \.tox
| \.venv
| \.pytest_cache
| dist
| build
| docs
)/
'''
[tool.isort]
profile = "black"
multi_line_output = 3
src_paths = ["rfcdl", "tests", "scripts"]
skip_glob = ["docs/*"]
include_trailing_comma = true
force_grid_wrap = false
combine_as_imports = true
line_length = 120
force_sort_within_sections = true
[tool.mypy]
files = ["rfcdl", "tests", "scripts"]
allow_redefinition = true
ignore_missing_imports = true
[tool.vulture]
paths = ["rfcdl", "tests", "scripts"]