-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (42 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
50 lines (42 loc) · 1.15 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
[project]
name = "mailsweep"
version = "0.5.10"
description = "IMAP Mailbox Analyzer & Cleaner — visualize and reclaim email storage"
readme = "README.md"
license = {text = "MIT"}
authors = [{name = "Jit Ray Chowdhury", email = "jit.ray.c@gmail.com"}]
requires-python = ">=3.11"
dependencies = [
"imapclient>=3.0.0",
"PyQt6>=6.6.0",
"squarify>=0.4.3",
"google-auth>=2.27.0",
"google-auth-oauthlib>=1.2.0",
"msal>=1.26.0",
"keyring>=24.3.0",
"chardet>=5.2.0",
"certifi>=2024.0.0",
"pyqt6-webengine>=6.10.0",
]
[project.urls]
Repository = "https://github.com/jitrc/MailSweep"
"Bug Tracker" = "https://github.com/jitrc/MailSweep/issues"
[dependency-groups]
dev = ["pytest>=8.0.0", "pytest-qt>=4.3.1", "ruff", "mypy"]
[project.scripts]
mailsweep = "mailsweep.main:main"
mailsweep-cli = "mailsweep.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["mailsweep"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true