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

56 lines
1.4 KiB
TOML
Raw Normal View History

2019-11-22 20:09:46 +00:00
# Remember to run `poetry update` after you edit this file!
[tool.poetry]
name = "royalpack"
2020-09-28 00:20:54 +00:00
version = "5.15.1"
2019-11-22 20:09:46 +00:00
description = "A Royalnet command pack for the Royal Games community"
authors = ["Stefano Pigozzi <ste.pigozzi@gmail.com>"]
2019-12-09 12:31:00 +00:00
license = "AGPL-3.0+"
2019-11-22 20:09:46 +00:00
readme = "README.md"
homepage = "https://github.com/Steffo99/royalpack"
documentation = "https://gh.steffo.eu/royalpack/"
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"
2020-07-18 00:50:00 +00:00
riotwatcher = "^3.0.0"
2019-12-03 13:57:08 +00:00
royalspells = "^3.2"
2020-05-19 16:46:49 +00:00
steam = "*"
2020-07-22 23:14:25 +00:00
sqlalchemy = "^1.3.18"
bcrypt = "^3.1.7"
2020-07-23 00:02:20 +00:00
itsdangerous = "^1.1.0"
2019-11-29 14:55:52 +00:00
2019-12-09 12:31:00 +00:00
[tool.poetry.dependencies.royalnet]
2020-09-04 01:27:22 +00:00
version = "~5.11.9"
2019-12-09 12:31:00 +00:00
# Maybe... there is a way to make these selectable?
extras = [
"telegram",
"discord",
"alchemy_easy",
"constellation",
"sentry",
"herald",
2020-01-09 02:14:56 +00:00
"coloredlogs",
2019-12-09 12:31:00 +00:00
]
2019-11-22 20:09:46 +00:00
# Development dependencies
[tool.poetry.dev-dependencies]
# Optional dependencies
[tool.poetry.extras]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"