-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
37 lines (34 loc) · 947 Bytes
/
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
[tool.poetry]
name = "wiki_tool_python"
version = "0.2.4"
description = "Script to perform tasks with websites on MediaWiki engine using API"
authors = ["Artiom Khandamirov <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/ArtUshak/wiki_tool_python/"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Operating System :: OS Independent"
]
[tool.poetry.dependencies]
python = "^3.8.1"
click = "^8.1.7"
requests = "^2.31.0"
requests-toolbelt = "^1.0.0"
[tool.poetry.group.dev.dependencies]
autopep8 = "^2.0.4"
mypy = "^1.5.1"
flake8 = "^6.1.0"
flake8-bandit = "^4.1.1"
flake8-pydocstyle = "^0.2.2"
flake8-isort = "^6.0.0"
flake8-bugbear = "^23.7.10"
flake8-builtins = "^2.1.0"
flake8-eradicate = "^1.5.0"
flake8-print = "^5.0.0"
types-requests = "^2.31.0.2"
flake8-deprecated = "^2.0.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"