generated from rr-/python_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
63 lines (54 loc) · 1.34 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
[tool.poetry]
name = "dict"
version = "1.0"
description = "A command line toolkit for online dictionary lookups."
authors = ["Marcin Kurczewski <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/bubblesub/dict"
classifiers = [
"Environment :: Other Environment",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Topic :: Text Processing",
"Topic :: Text Processing :: Linguistic",
]
packages = [
{ include = "dict" }
]
include = ["dict/py.typed"]
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
requests = "^2.26.0"
lxml = "^4.7.1"
cssselect = "^1.1.0"
tqdm = "^4.62.3"
xdg = "^5.1.1"
[tool.poetry.dev-dependencies]
pre-commit = "^2.16.0"
pytest = "^6.2.5"
black = "^21.12b0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 79
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
[tool.pylint.master]
jobs = 0
[tool.pylint.format]
max-line-length = 79
[tool.pylint.similarities]
ignore-imports = true
[tool.pylint.messages_control]
reports = "no"
disable = [
"import-error",
]