-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
73 lines (64 loc) · 1.63 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
[tool.poetry]
name = "extinfo"
version = "0.0.8"
description = "Scrape information about file extensions from web sources"
authors = ["Ryan Delaney <[email protected]>"]
license = "Apache 2.0"
readme = "README.rst"
repository = "https://github.com/rpdelaney/extinfo"
homepage = "https://pypi.org/project/extinfo"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
]
[tool.poetry.scripts]
extinfo = "extinfo.cli:cli"
[tool.poetry.dependencies]
python = "^3.10"
click = "^8.0.3"
deal = "^4.19.1"
requests = "^2.27.1"
beautifulsoup4 = "^4.10.0"
rich = "^12.2.0"
[tool.poetry.dev-dependencies]
black = "*"
flake8 = "*"
flake8-annotations-complexity = "*"
flake8-bugbear = "*"
flake8-comprehensions = "*"
flake8-simplify = "*"
mypy = "*"
pytest = "*"
pytest-cov = "*"
flake8-docstrings = "*"
types-requests = "*"
[tool.mypy]
plugins = ["deal.mypy"]
[tool.black]
line-length = 79
target_version = [ "py310",]
[tool.isort]
combine_star = true
indent = " "
length_sort = false
line_length = 79
multi_line_output = 3
include_trailing_comma = true # this prevents isort from fighting with black
[tool.poetry.dev-dependencies.isort]
version = "^5.10.1"
extras = [ "pyproject",]
[tool.pytest.ini_options]
console_output_style = "progress"
addopts = [
"--strict-markers",
"--strict-config",
"--doctest-modules"
]
filterwarnings = ["error"]
xfail_strict = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"