-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (34 loc) · 876 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "irc_api"
authors = [
{name="Sha-chan"},
]
description = "An API written in Python to make IRC bots."
readme = {file = "README.md", content-type = "text/markdown"}
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",
]
dynamic = [
"version",
]
[tool.setuptools]
license-files = [
"LICENSE",
]
[project.optional-dependencies]
doc = [
"sphinx>=7.0.1",
"sphinx-rtd-theme",
"sphinx-autodocgen",
]
[tool.setuptools.dynamic.version]
attr = "irc_api.__init__.__version__"
[project.urls]
Homepage = "https://github.com/Shadow15510/irc_api"
Documentation = "https://irc-api.readthedocs.io/en/stable/"