|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
|
|
|
|
[project]
|
|
|
|
[project]
|
|
|
|
name = "libbot"
|
|
|
|
name = "libbot"
|
|
|
|
version = "0.9"
|
|
|
|
version = "1.0"
|
|
|
|
authors = [{ name = "Profitroll" }]
|
|
|
|
authors = [{ name = "Profitroll" }]
|
|
|
|
description = "Universal bot library with functions needed for basic Discord/Telegram bot development."
|
|
|
|
description = "Universal bot library with functions needed for basic Discord/Telegram bot development."
|
|
|
|
readme = "README.md"
|
|
|
|
readme = "README.md"
|
|
|
@@ -15,7 +15,6 @@ classifiers = [
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Programming Language :: Python :: 3.7",
|
|
|
|
|
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
"Programming Language :: Python :: 3.9",
|
|
|
|
"Programming Language :: Python :: 3.9",
|
|
|
|
"Programming Language :: Python :: 3.10",
|
|
|
|
"Programming Language :: Python :: 3.10",
|
|
|
@@ -36,12 +35,18 @@ Documentation = "https://git.end-play.xyz/profitroll/LibBotUniversal/wiki"
|
|
|
|
Tracker = "https://git.end-play.xyz/profitroll/LibBotUniversal/issues"
|
|
|
|
Tracker = "https://git.end-play.xyz/profitroll/LibBotUniversal/issues"
|
|
|
|
|
|
|
|
|
|
|
|
[tool.setuptools]
|
|
|
|
[tool.setuptools]
|
|
|
|
packages = ["libbot", "libbot.i18n", "libbot.sync", "libbot.i18n.sync"]
|
|
|
|
packages = [
|
|
|
|
|
|
|
|
"libbot",
|
|
|
|
|
|
|
|
"libbot.i18n",
|
|
|
|
|
|
|
|
"libbot.sync",
|
|
|
|
|
|
|
|
"libbot.i18n.classes",
|
|
|
|
|
|
|
|
"libbot.i18n.sync",
|
|
|
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
[tool.setuptools_scm]
|
|
|
|
[tool.setuptools_scm]
|
|
|
|
|
|
|
|
|
|
|
|
[tool.black]
|
|
|
|
[tool.black]
|
|
|
|
target-version = ['py37', 'py38', 'py39', 'py310', 'py311']
|
|
|
|
target-version = ['py38', 'py38', 'py39', 'py310', 'py311']
|
|
|
|
|
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
[tool.isort]
|
|
|
|
profile = "black"
|
|
|
|
profile = "black"
|
|
|
|