-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
90 lines (81 loc) · 2.12 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
84
85
86
87
88
89
90
[tool.poetry]
name = "pyboxes"
version = "2.3.1"
description = "Pyboxes"
authors = ["yangli <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/cauliyang/pybox"
repository = "https://github.com/cauliyang/pybox"
documentation = "https://pyboxes.readthedocs.io"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
[tool.poetry.urls]
Changelog = "https://github.com/cauliyang/pybox/releases"
[tool.poetry.dependencies]
python = "^3.9"
click = "^8.0.1"
loguru = ">=0.5.3,<0.7.0"
requests = "^2.26.0"
google-api-python-client = "^2.37.0"
google-auth-httplib2 = "^0.1.0"
google-auth-oauthlib = ">=0.4.6,<0.6.0"
aiofiles = ">=0.8,<22.2"
aiohttp = "^3.8.1"
types-aiofiles = ">=0.8.8,<22.2.0"
types-requests = "^2.27.25"
linkify-it-py = "^2.0.0"
click-help-colors = "^0.9.1"
[tool.poetry.dev-dependencies]
pytest = "^7.1.3"
coverage = {extras = ["toml"], version = "^6.5"}
safety = "^2.3.1"
mypy = "^0.982"
typeguard = "^2.13.2"
xdoctest = {extras = ["colors"], version = "^1.0.1"}
sphinx = "^5.1.1"
sphinx-autobuild = ">=2021.3.14"
pre-commit = "^2.20.0"
flake8 = "^5.0.4"
black = ">=21.10b0"
flake8-bandit = "^4.1.1"
flake8-bugbear = "^22.9.23"
flake8-docstrings = "^1.6.0"
flake8-rst-docstrings = "^0.2.6"
pep8-naming = "^0.13.2"
darglint = "^1.8.1"
reorder-python-imports = "^3.8.3"
pre-commit-hooks = "^4.3.0"
sphinx-click = "^4.3.0"
Pygments = "^2.13.0"
pyupgrade = "^3.1.0"
furo = ">=2021.11.12"
codecov = "^2.1.12"
pytest-sugar = "^0.9.5"
ipdb = "^0.13.9"
[tool.poetry.scripts]
pybox = "pyboxes.__main__:main"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
tests = ["tests", "*/tests"]
[tool.coverage.run]
branch = true
source = ["pybox", "tests"]
[tool.coverage.report]
show_missing = true
fail_under = 40
[tool.mypy]
strict = false
warn_unreachable = true
pretty = true
show_column_numbers = true
show_error_codes = true
show_error_context = true
ignore_missing_imports = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"