2022-06-19 20:10:50 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "pydle"
|
2022-11-05 03:15:03 +00:00
|
|
|
version = "1.0.1"
|
2022-06-19 20:10:50 +00:00
|
|
|
description = "A compact, flexible, and standards-abiding IRC library for python3."
|
|
|
|
authors = ["Shiz <hi@shiz.me>"]
|
2022-11-06 01:11:57 +00:00
|
|
|
maintainers = ["Joshua Salzedo <joshuasalzedo@gmail.com>",]
|
2022-06-19 20:10:50 +00:00
|
|
|
repository = "https://github.com/Shizmob/pydle"
|
|
|
|
keywords = ["irc", "library","python3","compact","flexible"]
|
2022-11-06 01:11:57 +00:00
|
|
|
license = "BSD-3-Clause"
|
|
|
|
readme = "README.md"
|
|
|
|
documentation = "https://pydle.readthedocs.io/"
|
2022-06-19 20:10:50 +00:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2022-11-02 14:51:17 +00:00
|
|
|
python = ">=3.6,<3.10"
|
2022-06-19 20:10:50 +00:00
|
|
|
|
|
|
|
[tool.poetry.dependencies.pure-sasl]
|
|
|
|
version = "^0.6.2"
|
|
|
|
optional = true
|
|
|
|
|
|
|
|
# Stuff needed for development, but not for install&usage
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
sphinx-rtd-theme = "^1.0.0"
|
|
|
|
Sphinx = "^5.0.2"
|
|
|
|
|
|
|
|
|
|
|
|
[tool.poetry.extras]
|
|
|
|
sasl = ["pure-sasl"]
|
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
|
|
|
pydle = "pydle.utils.run:main"
|
|
|
|
pydle-irccat = 'pydle.utils.irccat:main'
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|