irc_api/pyproject.toml

41 lines
876 B
TOML
Raw Permalink Normal View History

2023-06-30 10:12:39 +02:00
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "irc_api"
authors = [
2023-07-01 09:21:00 +02:00
{name="Sha-chan"},
2023-06-30 10:12:39 +02:00
]
description = "An API written in Python to make IRC bots."
2023-07-03 11:40:00 +02:00
readme = {file = "README.md", content-type = "text/markdown"}
2023-06-30 10:12:39 +02:00
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Development Status :: 5 - Production/Stable",
]
2023-06-30 10:18:59 +02:00
dynamic = [
"version",
]
2023-07-01 09:21:00 +02:00
[tool.setuptools]
license-files = [
"LICENSE",
]
2023-07-01 11:02:42 +02:00
[project.optional-dependencies]
doc = [
"sphinx>=7.0.1",
2023-07-01 11:07:30 +02:00
"sphinx-rtd-theme",
2023-07-01 11:02:42 +02:00
"sphinx-autodocgen",
]
2023-07-01 10:52:55 +02:00
2023-06-30 10:18:59 +02:00
[tool.setuptools.dynamic.version]
attr = "irc_api.__init__.__version__"
2023-06-30 10:12:39 +02:00
2023-07-21 10:42:40 +02:00
2023-06-30 10:12:39 +02:00
[project.urls]
2023-07-01 10:52:55 +02:00
Homepage = "https://github.com/Shadow15510/irc_api"
2023-07-21 10:42:40 +02:00
Documentation = "https://irc-api.readthedocs.io/en/stable/"