-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (54 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
57 lines (54 loc) · 1.58 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
56
57
[build-system]
build-backend = "hatchling.build"
requires = [
"hatchling",
]
[project]
name = "eve-alert-opensource"
description = "Simple Local Alert System for EvE Online"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Geuthur", email = "devgeuthur@gmail.com" },
]
requires-python = ">=3.10"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dynamic = [
"version",
]
dependencies = [
"CTkMessagebox==2.7",
"customtkinter==5.2.2",
"dhooks-lite",
"mss==10.0.0",
"numpy==2.1.2",
"opencv-python==4.11.0.86",
"pillow==12.2.0",
"pyautogui==0.9.54",
"pyinstaller==6.11.0",
"pynput==1.7.7",
"screeninfo==0.8.1",
"sounddevice==0.5.1",
"soundfile==0.12.1",
]
urls.Changelog = "https://github.com/Geuthur/EVE-Alert-Opensource/blob/main/CHANGELOG.md"
urls.Documentation = "https://github.com/Geuthur/EVE-Alert-Opensource/blob/main/README.md"
urls.Donations = "https://ko-fi.com/Geuthur"
urls.Homepage = "https://github.com/Geuthur/EVE-Alert-Opensource"
urls.Source = "https://github.com/Geuthur/EVE-Alert-Opensource"
urls.Tracker = "https://github.com/Geuthur/EVE-Alert-Opensource/issues"
[tool.hatch.build]
include = [
"/evealert",
]
[tool.hatch.version]
path = "evealert/__init__.py"