-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
43 lines (36 loc) · 938 Bytes
/
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
[project]
name = "hasherino"
description = "hasherino is a twitch chat client built using flet"
version = "0.1.15"
authors = [
{ name = "Douglas", email = "[email protected]" }
]
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 2 - Pre-Alpha",
]
readme = "README.md"
dependencies = [
"aiohttp == 3.8.5",
"websockets == 11.0.3",
"keyring == 24.2.0",
"flet == 0.19.0",
"certifi == 2023.7.22",
"validators == 0.22.0",
]
[tool.isort]
profile = "black"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project.urls]
"Homepage" = "https://github.com/Hashy-Software/hasherino"
[project.scripts]
hasherino = "hasherino.__main__:run_hasherino"
[project.optional-dependencies]
dev = [
"pyinstaller == 6.0.0",
]