-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
125 lines (109 loc) · 2.53 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# Poetry pyproject.toml: https://python-poetry.org/docs/pyproject/
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "imarkdown"
version = "1.2.3"
description = "A practical Markdown image url converter"
readme = "README.md"
authors = ["Zeeland <zeeland4work@gmail.com>"]
license = "MIT"
repository = "https://github.com/Undertone0809/imarkdown"
homepage = "https://github.com/Undertone0809/imarkdown"
keywords = [
"python",
"markdown",
"Markdown",
"imarkdown",
"markdown converter"
]
# Pypi classifiers: https://pypi.org/classifiers/
classifiers = []
[tool.poetry.dependencies]
python = ">=3.7"
requests = "^2.28.2"
pydantic = "^1.10.0"
cushy-storage = "^1.2.5"
oss2 = "^2.18.0"
[tool.poetry.dev-dependencies]
bandit = "^1.7.1"
black = {version = "^22.12", allow-prereleases = true}
isort = {extras = ["colors"], version = "^5.10.1"}
mypy = "^1.0"
mypy-extensions = "^0.4.3"
pre-commit = "^2.15.0"
pydocstyle = "^6.1.1"
pylint = "^2.11.1"
pytest = "^6.2.5"
coverage = "^6.1.2"
coverage-badge = "^1.1.0"
pytest-html = "^3.1.1"
pytest-cov = "^3.0.0"
[tool.black]
# https://github.com/psf/black
target-version = ["py37"]
line-length = 88
color = true
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| env
| venv
)/
'''
[tool.isort]
# https://github.com/timothycrosley/isort/
py_version = 37
line_length = 88
sections = ["FUTURE", "TYPING", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
profile = "black"
include_trailing_comma = true
multi_line_output = 3
indent = 4
color_output = true
[tool.mypy]
# https://mypy.readthedocs.io/en/latest/config_file.html#using-a-pyproject-toml-file
python_version = 3.7
pretty = true
show_traceback = true
color_output = true
allow_redefinition = false
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
ignore_missing_imports = true
implicit_reexport = false
no_implicit_optional = true
show_column_numbers = true
show_error_codes = true
show_error_context = true
strict_equality = true
strict_optional = true
warn_no_return = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_configs = true
warn_unused_ignores = true
[tool.coverage.run]
source = ["tests"]
[coverage.paths]
source = "hooks"
[coverage.run]
branch = true
[coverage.report]
fail_under = 50
show_missing = true
[[tool.poetry.source]]
name = "tsinghua"
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
priority = "default"