-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
63 lines (57 loc) · 1.47 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
[build-system]
build-backend = "hatchling.build"
requires = [
"hatchling>=1.13",
"hatch-vcs>=0.3",
]
[project]
name = "ib3"
description = "IRC bot framework using mixins to provide common functionality"
readme = "README.rst"
license = "GPL-3.0-or-later"
authors = [
{ name = "Bryan Davis", email = "[email protected]" },
]
requires-python = ">=3.7"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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",
]
dynamic = [
"version",
]
dependencies = [
"irc>=20.0.0",
]
[project.urls]
Homepage = "https://python-ib3.readthedocs.io/en/latest/"
"Bug Tracker" = "https://github.com/bd808/python-ib3/issues"
Source = "https://github.com/bd808/python-ib3"
[tool.hatch]
build.dev-mode-dirs = ["src"]
build.targets.sdist.include = [
"/COPYING",
"/doc",
"/examples",
"/src",
"/tests",
"/tox.ini",
]
[tool.hatch.version]
source = "vcs"
[tool.black]
line_length = 88
target_version = ["py37"]
[tool.isort]
known_first_party = ["ib3", "tests"]
line_length = 88
profile = "black"