68 lines
1.9 KiB
TOML
68 lines
1.9 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=62.6", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "libbot"
|
|
dynamic = ["version", "dependencies", "optional-dependencies"]
|
|
authors = [{ name = "Profitroll" }]
|
|
description = "Universal bot library with functions needed for basic Discord/Telegram bot development."
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
license = { text = "GPLv3" }
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
"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",
|
|
]
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = { attr = "libbot.__version__" }
|
|
dependencies = { file = "requirements/_.txt" }
|
|
|
|
[tool.setuptools.dynamic.optional-dependencies]
|
|
dev = { file = "requirements/dev.txt" }
|
|
pycord = { file = "requirements/pycord.txt" }
|
|
pyrogram = { file = "requirements/pyrogram.txt" }
|
|
speed = { file = "requirements/speed.txt" }
|
|
|
|
[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.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.black]
|
|
target-version = ['py38', 'py39', 'py310', 'py311']
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
|
|
[tool.pytest.ini_options]
|
|
minversion = "6.0"
|
|
python_files = ["test_*.py"]
|
|
pythonpath = "."
|
|
testpaths = ["tests"]
|
|
|
|
[tool.mypy]
|
|
namespace_packages = true
|
|
install_types = true
|
|
strict = true
|
|
show_error_codes = true
|
|
|
|
[tool.pylint.main]
|
|
extension-pkg-whitelist = ["ujson"]
|
|
py-version = 3.8
|
|
|
|
[tool.coverage.run]
|
|
source = ["libbot"]
|