-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 1.11 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
[project]
name = "blirc"
version = "0.2.1"
authors = [
{ name="Michael Connor Buchan", email="mikey@blindcomputing.org" },
]
description = "Your favourite blindy IRC client"
readme = "README.md"
requires-python = ">=3.10"
keywords = ["irc", "self-voicing", "blind", "accessible"]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Intended Audience :: End Users/Desktop",
"Topic :: Communications :: Chat :: Internet Relay Chat",
]
dependencies = [
"appdirs~=1.4.4",
"cytolk~=0.1.12; sys_platform=='win32'",
"human-readable~=1.3.1",
"miniirc~=1.9.1",
"pygame~=2.1.2",
"pyobjc~=9.0.1; sys_platform=='darwin'",
"tomlkit~=0.11.6",
]
gui-scripts = { blirc = "blirc.__main__:main" }
[project.urls]
"Homepage" = "https://github.com/lower-elements/blirc"
"Bug Tracker" = "https://github.com/lower-elements/blirc/issues"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"