-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
45 lines (41 loc) · 940 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
42
43
44
[project]
dynamic = ["version"]
name = "boj-cli"
authors = [{name="xvzc"}]
description = "Command line interface for BOJ"
readme = "README.md"
dependencies = [
"beautifulsoup4==4.11.1",
"certifi==2022.12.7",
"cffi==1.15.1",
"charset-normalizer==3.0.1",
"cryptography==39.0.0",
"idna==3.4",
"mdurl==0.1.2",
"selenium==4.23.0",
"msgpack==1.0.4",
"pycparser==2.21",
"chromedriver-autoinstaller==0.6.2",
"Pygments==2.14.0",
"requests==2.28.2",
"rich==13.2.0",
"dependency-injector==4.41.0",
"six==1.16.0",
"soupsieve==2.3.2.post1",
"urllib3==1.26.14",
"websockets==10.4",
"PyYAML==5.3.1",
"webdriver_manager==4.0.2",
]
requires-python = ">=3.9"
[build-system]
requires = [
"setuptools==67.7.2",
"requests==2.28.2",
"wheel==0.40.0",
]
build-backend = "setuptools.build_meta"
[project.scripts]
boj = "boj.entry:cli"
[tool.black]
line-length = 88