mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 11:34:18 +00:00
37 lines
1,011 B
TOML
37 lines
1,011 B
TOML
[tool.poetry]
|
|
name = "royalnet"
|
|
version = "6.4.0"
|
|
description = "A multipurpose bot framework"
|
|
authors = ["Stefano Pigozzi <me@steffo.eu>"]
|
|
license = "AGPL-3.0-or-later"
|
|
readme = "README.md"
|
|
repository = "https://github.com/Steffo99/royalnet"
|
|
documentation = "https://royalnet-6.readthedocs.io/"
|
|
keywords = ["royalnet"]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Topic :: Communications :: Chat",
|
|
"Typing :: Typed"
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8"
|
|
sqlalchemy = "^1.4.5"
|
|
toml = "^0.10.1"
|
|
pydantic = "^1.8.1"
|
|
async-property = "^0.2.1"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pytest = "^6.2.2"
|
|
pytest-asyncio = "^0.14.0"
|
|
sphinx = "^3.5.3"
|
|
sphinx_rtd_theme = "^0.5.0"
|
|
async-timeout = "^3.0.1"
|
|
|
|
[build-system]
|
|
requires = ["poetry>=0.12"]
|
|
build-backend = "poetry.masonry.api"
|