2019-12-04 00:47:00 +00:00
|
|
|
# Remember to run `poetry update` after you edit this file!
|
|
|
|
|
|
|
|
[tool.poetry]
|
|
|
|
name = "rpgpack"
|
2020-06-22 17:44:58 +00:00
|
|
|
version = "5.9.0"
|
|
|
|
description = "A Dungeons & Dragons utilities pack for Royalnet"
|
2019-12-04 00:47:00 +00:00
|
|
|
authors = ["Stefano Pigozzi <ste.pigozzi@gmail.com>"]
|
|
|
|
license = "AGPL-3.0+"
|
|
|
|
readme = "README.md"
|
2020-06-22 17:44:58 +00:00
|
|
|
homepage = "https://github.com/Steffo99/rpgpack"
|
2019-12-04 00:47:00 +00:00
|
|
|
classifiers = [
|
2020-06-22 17:44:58 +00:00
|
|
|
"Development Status :: 4 - Beta",
|
2019-12-04 00:47:00 +00:00
|
|
|
"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]
|
2020-06-22 17:44:58 +00:00
|
|
|
version = "~5.9.2"
|
2019-12-04 00:47:00 +00:00
|
|
|
extras = [
|
|
|
|
"telegram",
|
|
|
|
"alchemy_easy",
|
|
|
|
]
|
|
|
|
|
|
|
|
# Development dependencies
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
|
|
|
|
|
|
|
|
# Optional dependencies
|
|
|
|
[tool.poetry.extras]
|
|
|
|
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry>=0.12"]
|
|
|
|
build-backend = "poetry.masonry.api"
|