LibBotUniversal/pyproject.toml

55 lines
1.5 KiB
TOML
Raw Normal View History

2023-05-15 00:37:50 +03:00
[build-system]
2023-05-15 00:38:26 +03:00
requires = ["setuptools>=62.6,<66"]
2023-05-15 00:37:50 +03:00
build-backend = "setuptools.build_meta"
[project]
name = "libbot"
2023-07-26 15:12:13 +03:00
version = "1.9"
2023-05-15 00:37:50 +03:00
authors = [{ name = "Profitroll" }]
description = "Universal bot library with functions needed for basic Discord/Telegram bot development."
readme = "README.md"
requires-python = ">=3.8"
2023-05-15 00:37:50 +03:00
license = { text = "GPL3" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
2023-05-15 00:40:45 +03:00
dependencies = ["aiofiles~=23.1.0"]
2023-05-15 00:37:50 +03:00
[project.optional-dependencies]
2023-06-26 13:45:39 +03:00
pycord = ["py-cord~=2.4.1"]
pyrogram = ["pyrogram~=2.0.106", "apscheduler~=3.10.1"]
2023-06-13 11:53:56 +03:00
speed = ["ujson~=5.8.0"]
2023-05-15 00:37:50 +03:00
[project.urls]
Source = "https://git.end-play.xyz/profitroll/LibBotUniversal"
Documentation = "https://git.end-play.xyz/profitroll/LibBotUniversal/wiki"
Tracker = "https://git.end-play.xyz/profitroll/LibBotUniversal/issues"
[tool.setuptools]
2023-06-20 13:40:44 +03:00
packages = [
"libbot",
"libbot.sync",
2023-06-26 13:19:29 +03:00
"libbot.pyrogram",
"libbot.pyrogram.classes",
"libbot.i18n",
2023-06-20 13:40:44 +03:00
"libbot.i18n.sync",
2023-06-26 13:19:29 +03:00
"libbot.i18n.classes",
2023-06-20 13:40:44 +03:00
]
2023-05-15 00:37:50 +03:00
[tool.setuptools_scm]
[tool.black]
2023-06-29 16:58:20 +03:00
target-version = ['py38', 'py39', 'py310', 'py311']
2023-05-15 00:37:50 +03:00
[tool.isort]
profile = "black"