forked from amiwrpremium/python-bitpin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (51 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
60 lines (51 loc) · 1.25 KB
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
[tool.poetry]
name = "python-bitpin"
version = "1.0.0"
description = "Bitpin Exchange Python SDK"
authors = ["AMiWR <amiwrpremium@gmail.com>"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "bitpin", from = "src" }
]
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
requests = "^2.31.0"
aiohttp = "^3.8.5"
pysocks = "^1.7.1"
deprecated = "^1.2.14"
[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
mypy = "^1.5.1"
flake8 = "^6.1.0"
pylint = "^2.17.5"
dead = "^1.5.2"
pytype = "^2023.8.22"
pydocstyle = "^6.3.0"
vulture = "^2.9.1"
ruff = "^0.7.0"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.5.2"
mkdocs-material = "^9.2.5"
mkdocstrings = "^0.22.0"
mkdocs-git-revision-date-localized-plugin = "^1.2.0"
mkdocs-git-committers-plugin-2 = "^1.1.2"
mkdocs-gen-files = "^0.5.0"
mkdocs-literate-nav = "^0.6.0"
mkdocs-section-index = "^0.3.5"
mkdocstrings-python = "^1.6.0"
markdown-exec = {extras = ["ansi"], version = "^1.6.0"}
genbadge = {extras = ["flake8"], version = "^1.1.0"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
[tool.pydocstyle]
convention = "google"
add-ignore = "D212, D202"
[tool.vulture]
min_confidence = 100
paths = ["src/"]
sort_by_size = true
verbose = true