-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (35 loc) · 1.02 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
[project]
name = "AccountCodeExplorer"
version = "1.0.2"
description = "Account Code Explorer"
authors = [
{name = "Andrew Arneson", email = "[email protected]"}
]
requires-python = ">=3.12"
dependencies = [
"peewee >= 3.17.6",
"screeninfo>=0.8.1",
"tkcalendar>=1.6.1",
]
[project.optional-dependencies]
dev = [
"ruff ~= 0.6.8",
"cx_Freeze ~= 7.2.2"
]
[project.urls]
Homepage = "https://github.com/Loran425/AccountCodeExplorer"
Repository = "https://github.com/Loran425/AccountCodeExplorer.git"
Issues = "https://github.com/Loran425/AccountCodeExplorer/issues"
Releases = "https://github.com/Loran425/AccountCodeExplorer/releases"
[tool.cxfreeze]
executables = [
{script = "main.py", base = "gui", target_name = "Account Code Explorer", icon = "AccountCodeExplorer.ico"}
]
[tool.cxfreeze.build_exe]
excludes = ["ruff"]
include_files = ["default_config.ini", "AccountCodeExplorer.ico"]
constants = "BUILD_COPYRIGHT=\"Copyright © 2024 Andrew Arneson\""
[tool.ruff]
line-length = 120
[tool.uv]
native-tls = true