-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (54 loc) · 1.23 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
[tool.poetry]
name = "siksha-crawler"
version = "0.1.0"
description = "Siksha's Web Crawler"
authors = [
"Dohyeon Kim <ladig1017@gmail.com>",
"Yujin Im <jina0605@gmail.com>"
]
maintainers = [
"Daeyong Jeong <iwin1203@naver.com>",
"Hyungwook Choi <chooi221@snu.ac.kr>",
"Yoonsoo Park <junepark1211@snu.ac.kr>",
"Youngzoo Park <enkeejuniour@snu.ac.kr>",
"Jaewan Park <jaejae1112@gmail.com>"
]
readme = "README.md"
repository = "https://github.com/wafflestudio/siksha-crawler"
[tool.poetry.dependencies]
python = "~3.10"
aiohttp = "^3.8.4"
beautifulsoup4 = "^4.12.2"
chardet = "^5.1.0"
click = "^8.1.5"
cryptography = "^41.0.2"
mypy-extensions = "^1.0.0"
pathspec = "^0.11.1"
platformdirs = "^3.8.1"
pymysql = "^1.1.0"
pytz = "^2023.3"
requests = "^2.31.0"
tomli = "^2.0.1"
typing-extensions = "^4.7.1"
urllib3 = "^2.0.3"
[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
pylint = "^2.17.4"
pre-commit = "^3.3.3"
[tool.black]
line-length = 120
target-version = ['py310']
exclude = '''
/(
\.git
| \.venv
)/
'''
[tool.pylint.'MESSAGES CONTROL']
max-line-length = 120
disable = 'C,R,I,import-error,not-callable'
[tool.pylint]
ignore=[".venv", ".git"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"