mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
51 lines
1.2 KiB
TOML
51 lines
1.2 KiB
TOML
# Remember to run `poetry update` after you edit this file!
|
|
|
|
[tool.poetry]
|
|
name = "keipack"
|
|
version = "0.1"
|
|
description = "A mysterious AI assistant"
|
|
authors = ["Stefano Pigozzi <ste.pigozzi@gmail.com>"]
|
|
license = "AGPL-3.0+"
|
|
readme = "README.md"
|
|
homepage = "https://github.com/Steffo99/keipack"
|
|
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"
|
|
|
|
riotwatcher = "^2.7.1"
|
|
|
|
[tool.poetry.dependencies.royalnet]
|
|
version = "^5.1.4"
|
|
# Maybe... there is a way to make these selectable?
|
|
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"
|