-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
42 lines (38 loc) · 1.05 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
[tool.poetry]
name = "yaylib"
version = "0.0.0"
description = "同世代と趣味の通話コミュニティ - Yay! (イェイ) で投稿やタイムラインの取得、リツイートやいいねの実行、フォローや投稿の検索など様々な機能をPythonプログラムから利用可能なAPIクライアントツールです。"
authors = ["ekkx <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/ekkx/yaylib"
repository = "https://github.com/ekkx/yaylib"
keywords = [
"yay",
"yaylib",
"api",
"bot",
"tool",
"client",
"library",
"wrapper",
"ボット",
"ライブラリ",
"ツール"
]
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
aiohttp = "3.9.5"
pillow = "9.3.0"
cryptography = "41.0.1"
poetry-version-plugin = "^0.2.0"
[tool.poetry.group.dev.dependencies]
sphinx = "*"
shibuya = "*"
sphinx_copybutton = "*"
sphinx-design = "*"
[tool.poetry-version-plugin]
source = "init"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"