-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (58 loc) · 1.84 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
62
63
64
65
[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_iplookup", "sopel_iplookup.*"]
namespaces = false
[tool.setuptools.dynamic]
readme = { file=["README.rst", "NEWS"], content-type="text/x-rst" }
[project]
name = "sopel-iplookup"
version = "1.1.0"
description = "IP Lookup plugin for Sopel"
keywords = [
"sopel",
"plugin",
"bot",
"irc",
]
maintainers = [
{ name="dgw", email="[email protected]" },
{ name="Florian Strzelecki", email="[email protected]" },
{ name="SnoopJ", email="[email protected]" },
]
authors = [
{ name="Dimitri Molenaars" },
{ name="Elad Alfassa", email="[email protected]" },
{ name="dgw", email="[email protected]" },
{ name="Florian Strzelecki", email="[email protected]" },
{ name="SnoopJ", email="[email protected]" },
]
dynamic = ["readme"]
license = { text="EFL-2.0" }
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: Eiffel Forum License (EFL)",
"License :: OSI Approved :: Eiffel Forum License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Communications :: Chat :: Internet Relay Chat",
]
requires-python = ">=3.7, <4"
dependencies = [
"sopel>=7.1",
"geoip2",
]
[project.urls]
"Homepage" = "https://github.com/sopel-irc/sopel-iplookup"
"Bug Tracker" = "https://github.com/sopel-irc/sopel-iplookup/issues"
[project.entry-points."sopel.plugins"]
iplookup = "sopel_iplookup.plugin"