LibBotUniversal/pyproject.toml

48 lines
1.4 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-05-26 16:52:29 +03:00
version = "0.7"
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.7"
license = { text = "GPL3" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"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]
pycord = ["py-cord>=2.0.0"]
pyrogram = ["pyrogram>=2.0.0"]
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-05-26 14:13:23 +03:00
packages = ["libbot", "libbot.i18n", "libbot.sync", "libbot.i18n.sync"]
2023-05-15 00:37:50 +03:00
[tool.setuptools_scm]
[tool.black]
target-version = ['py37', 'py38', 'py39', 'py310', 'py311']
[tool.isort]
profile = "black"