-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (59 loc) · 1.77 KB
/
Copy pathpyproject.toml
File metadata and controls
69 lines (59 loc) · 1.77 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
58
59
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = ["hatchling>=1.31,<2"]
build-backend = "hatchling.build"
[project]
name = "codex-usage-tray"
version = "0.1.0"
description = "Privacy-first Windows tray app for monitoring OpenAI Codex usage limits, reset times, and saved resets."
readme = "README.md"
requires-python = ">=3.14,<3.15"
license = "MIT"
authors = [{ name = "Codex Usage Tray contributors" }]
keywords = ["codex", "windows", "system-tray", "rate-limits", "usage-monitor"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Win32 (MS Windows)",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Programming Language :: Python :: 3.14",
"Topic :: Utilities",
]
dependencies = [
"pillow>=12.0,<13",
"platformdirs>=4.3,<5",
"pystray>=0.19.5,<0.20",
]
[project.urls]
Homepage = "https://alex-indi.github.io/codex-usage-tray/"
Repository = "https://github.com/alex-indi/codex-usage-tray"
Issues = "https://github.com/alex-indi/codex-usage-tray/issues"
[project.gui-scripts]
codex-usage-tray = "codex_usage_tray.__main__:main"
[dependency-groups]
dev = [
"mypy>=2.3,<3",
"pyinstaller>=6.21,<7",
"pytest>=9.1,<10",
"pytest-cov>=7.1,<8",
"ruff>=0.12,<1",
]
[tool.hatch.build.targets.wheel]
packages = ["src/codex_usage_tray"]
[tool.pytest.ini_options]
addopts = "-ra --strict-markers --strict-config"
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py314"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM", "RUF"]
[tool.mypy]
python_version = "3.14"
strict = true
packages = ["codex_usage_tray"]
mypy_path = "src"
[[tool.mypy.overrides]]
module = ["pystray", "pystray.*"]
ignore_missing_imports = true