-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
61 lines (50 loc) · 1.33 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[build-system]
requires = ["setuptools>=63.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
platforms = ["Linux x86, x86-64"]
[tool.setuptools.packages.find]
include = ["sopel_github", "sopel_github.*"]
namespaces = false
[tool.setuptools.dynamic]
readme = { file=["README.md", "NEWS"], content-type="text/markdown" }
[project]
name = "sopel-github"
version = "0.5.0"
description = "GitHub plugin for Sopel"
authors = [
{ name="Max Gurela", email="[email protected]" }
]
maintainers = [
{ name="dgw", email="[email protected]" },
]
license = { text="EFL-2.0" }
dynamic = ["readme"]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: Eiffel Forum License (EFL)",
"License :: OSI Approved :: Eiffel Forum License",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Communications :: Chat :: Internet Relay Chat",
]
keywords = [
"sopel",
"plugin",
"bot",
"irc",
]
requires-python = ">=3.8, <4"
dependencies = [
"sopel>=8",
"bottle~=0.12.0",
]
[project.optional-dependencies]
emojize = [
"emoji>=2.0,<3",
]
[project.urls]
"Homepage" = "https://github.com/sopel-irc/sopel-github"
"Bug Tracker" = "https://github.com/sopel-irc/sopel-github/issues"
[project.entry-points."sopel.plugins"]
"github" = "sopel_github.plugin"