-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (44 loc) · 1.08 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (44 loc) · 1.08 KB
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
[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_cancelx", "sopel_cancelx.*"]
namespaces = false
[tool.setuptools.dynamic]
readme = { file=["README.md", "NEWS"], content-type="text/markdown" }
[project]
name = "sopel-cancelx"
version = "0.1.2"
description = "A Sopel plugin to cancel X links"
authors = [
{ name="dgw", email="dgw@technobabbl.es" },
]
license = "EFL-2.0"
license-files = ["COPYING"]
dynamic = ["readme"]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: Communications :: Chat :: Internet Relay Chat",
]
keywords = [
"sopel",
"plugin",
"bot",
"irc",
]
requires-python = ">=3.8, <4"
dependencies = [
"sopel>=8.0",
]
[dependency-groups]
dev = [
"pytest",
]
[project.urls]
"Homepage" = "https://github.com/dgw/sopel-cancelx"
"Bug Tracker" = "https://github.com/dgw/sopel-cancelx/issues"
[project.entry-points."sopel.plugins"]
"cancelx" = "sopel_cancelx.plugin"