-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.pyproject.toml
More file actions
47 lines (39 loc) · 1.11 KB
/
blog.pyproject.toml
File metadata and controls
47 lines (39 loc) · 1.11 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
[tool.poetry]
name = "blog"
version = "0.1.0"
description = ""
authors = ["Benjamin Du"]
[tool.poetry.dependencies]
python = ">=3.7.1,<3.9"
beautifulsoup4 = ">=4.9.3"
typogrify = ">=2.0.7"
pelican = ">=4.5.4"
pelican-jupyter = ">=0.10.0"
pelican-render-math = ">=1.0.3"
jupyter = ">=1.0.0"
dsutil = {git = "https://github.com/dclong/dsutil.git", rev = "main"}
[tool.poetry.dev-dependencies]
pylint = ">=2.7.2"
pytest = ">=6.2.0"
pytype = { version = ">=2020.08.10", python = "<3.9" }
yapf = ">=0.30.0"
[tool.yapf]
based_on_style = "facebook"
column_limit = 88
[tool.yapfignore]
ignore_patterns = [
"*/.ipynb_checkpoints/",
]
[tool.pylint.master]
ignore = ".venv,.ipynb_checkpoints"
unsafe-load-any-extension = "no"
extension-pkg-whitelist = "numpy,cv2,pyspark"
generated-members = "sqlite3.*,cv2.*,pyspark.*"
ignored-modules = "pyspark.sql.functions"
[tool.pylint.typecheck]
ignored-classes = "Namespace"
[tool.pylint.messages_control]
disable = "C0103,C0200,C0301,C0303,C0330,R0902,R0903,R0911,R0912,R0913,W0621,W0622,W0702,W0703,W1116"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"