1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2025-02-17 10:53:57 +00:00
royalnet/pyproject.toml

56 lines
1.4 KiB
TOML
Raw Normal View History

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