-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (35 loc) · 987 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
38
39
40
41
[tool.poetry]
name = "DemoSpider"
version = "3.9.8"
package-mode = false
description = "AyugeSpiderTools 的具体场景实现。"
authors = ["ayuge <[email protected]>"]
maintainers = ["ayuge <[email protected]>"]
readme = "README.md"
repository = "https://github.com/shengchenyang/DemoSpider"
documentation = "https://ayugespidertools.readthedocs.io/en/latest/"
keywords = ["crawler", "scraping", "aiohttp", "asyncio", "scrapy"]
homepage = "https://www.ayuge.top/mkdocs-material/"
[tool.poetry.dependencies]
python = "^3.8.1"
ayugespidertools = "3.9.8"
[tool.poetry.group.dev.dependencies]
pre-commit = "3.5.0"
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
[tool.mypy]
python_version = "3.8"
ignore_missing_imports = true
disable_error_code = ["attr-defined", "arg-type", "union-attr"]
[[tool.mypy.overrides]]
module = [
"yaml",
"toml",
"pymysql",
"pymysql.connections",
"pymysql.cursors",
"requests",
]
ignore_missing_imports = true