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

51 lines
1.3 KiB
TOML
Raw Permalink Normal View History

2019-12-25 00:47:10 +00:00
# Remember to run `poetry update` after you edit this file!
[tool.poetry]
2019-12-25 01:41:52 +00:00
name = "giftpack"
description = "A pack for the gift drawing at the Xmas 2019 family lunch"
2019-12-25 12:22:27 +00:00
version = "1.0.2"
2019-12-25 01:41:52 +00:00
authors = ["Stefano Pigozzi <ste.pigozzi@gmail.com>"]
license = "AGPL-3.0+"
homepage = "https://github.com/Steffo99/giftpack"
2019-12-25 00:47:10 +00:00
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+)"
]
readme = "README.md"
# Library dependencies
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.dependencies.royalnet]
2019-12-25 01:41:52 +00:00
version = "^5.2"
2019-12-25 00:47:10 +00:00
# There will soon be a way to make all these optional
extras = [
"telegram",
"discord",
2019-12-25 01:41:52 +00:00
"matrix",
2019-12-25 00:47:10 +00:00
"alchemy_easy",
"bard",
"constellation",
"sentry",
"herald",
"coloredlogs"
]
# 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"