-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (35 loc) · 1.17 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
[tool.poetry]
name = "nicovideo.py"
version = "4.1.2"
description = "ニコニコ動画のAPIを使用して、動画や投稿者などの情報を取得するライブラリです。"
license = "MIT"
authors = ["okaits7534 <[email protected]>"]
maintainers = ["okaits7534 <[email protected]>"]
readme = "README.md"
repository = "https://github.com/okaits/nicovideo.py"
documentation = "https://github.com/okaits/nicovideo.py/tree/master/docs/"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: Japanese",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed"
]
packages = [{include = "nicovideo"}]
include = ["LICENSE.md", "README.md"]
[tool.poetry.dependencies]
python = ">=3.9"
json5 = "0.9.25"
bs4 = "^0.0.2"
[tool.poetry.group.dev.dependencies]
pylint = "3.2.6"
mypy = "1.11.1"
types-beautifulsoup4 = "4.12.0.20240511"
[tool.poetry.group.docs.dependencies]
sphinx = "7.4.7"
sphinx-rtd-theme = "2.0.0"
sphinx-markdown-builder = "0.6.6"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"