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

52 lines
1.3 KiB
TOML
Raw Normal View History

2020-01-14 18:33:23 +00:00
# Remember to run `poetry update` after you edit this file!
[tool.poetry]
2020-06-23 16:59:38 +00:00
name = "markov"
2020-01-14 19:27:49 +00:00
description = "A Royalnet pack to have fun with Markovify."
2020-06-23 16:59:38 +00:00
version = "0.3.1"
2020-01-14 19:27:49 +00:00
authors = ["Stefano Pigozzi <ste.pigozzi@gmail.com>"]
license = "AGPL-3.0+"
homepage = "https://github.com/Steffo99/markovpack"
2020-01-14 18:33:23 +00:00
classifiers = [
2020-01-14 19:27:49 +00:00
"Development Status :: 4 - Beta",
2020-01-14 18:33:23 +00:00
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)"
]
readme = "README.md"
# Library dependencies
[tool.poetry.dependencies]
python = "^3.8"
2020-01-14 19:27:49 +00:00
markovify = "^0.8.0"
2020-01-14 18:33:23 +00:00
[tool.poetry.dependencies.royalnet]
2020-06-23 16:59:38 +00:00
version = "^5.9.2"
2020-01-14 19:27:49 +00:00
# Maybe... there is a way to make these selectable?
2020-01-14 18:33:23 +00:00
extras = [
"telegram",
"discord",
"alchemy_easy",
"bard",
"constellation",
"sentry",
"herald",
2020-01-14 19:27:49 +00:00
"coloredlogs",
"matrix"
2020-01-14 18:33:23 +00:00
]
# Development dependencies
[tool.poetry.dev-dependencies]
# Optional dependencies
[tool.poetry.extras]
# Poetry stuff
# Leave it alone!
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"