1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00
royalnet/pyproject.toml

51 lines
1.3 KiB
TOML
Raw Normal View History

2019-12-04 00:47:00 +00:00
# Remember to run `poetry update` after you edit this file!
[tool.poetry]
name = "rpgpack"
2019-12-04 16:35:08 +00:00
version = "5.1.3"
2019-12-04 00:47:00 +00:00
description = "A Royalnet Pack to play role-playing-games"
authors = ["Stefano Pigozzi <ste.pigozzi@gmail.com>"]
license = "AGPL-3.0+"
readme = "README.md"
homepage = "https://github.com/Steffo99/royalnet"
documentation = "https://gh.steffo.eu/royalnet/"
classifiers = [
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)"
]
# Library dependencies
[tool.poetry.dependencies]
python = "^3.8"
dice = "^2.4.2"
sortedcontainers = "^2.1.0"
2019-12-04 00:50:57 +00:00
aiohttp = "^3.5"
2019-12-04 00:47:00 +00:00
[tool.poetry.dependencies.royalnet]
2019-12-04 00:50:57 +00:00
version = "^5.1.2"
2019-12-04 00:47:00 +00:00
# Require these until https://github.com/Steffo99/royalnet/issues/105 is done
extras = [
"telegram",
"discord",
"alchemy_easy",
"bard",
"constellation",
"sentry",
"herald",
"coloredlogs"
]
# Development dependencies
[tool.poetry.dev-dependencies]
# Optional dependencies
[tool.poetry.extras]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"