# Remember to run `poetry update` after you edit this file! [tool.poetry] name = "giftpack" description = "A pack for the gift drawing at the Xmas 2019 family lunch" version = "1.0.1" authors = ["Stefano Pigozzi "] license = "AGPL-3.0+" homepage = "https://github.com/Steffo99/giftpack" 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] version = "^5.2" # There will soon be a way to make all these optional extras = [ "telegram", "discord", "matrix", "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"