-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (74 loc) · 1.86 KB
/
Copy pathpyproject.toml
File metadata and controls
91 lines (74 loc) · 1.86 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[project]
name = "mmpm"
version = "5.0.1"
description = "MMPM, the MagicMirror Package Manager CLI simplifies the installation, removal, and general maintenance of MagicMirror packages"
authors = [
{ name = "Brandon Marlowe", email = "bpmarlowe-software@protonmail.com" },
]
requires-python = ">=3.11"
readme = "README.md"
license = { text = "MIT" }
keywords = [
"MagicMirror magicmirror package-manager mmpm MMPM magicmirror-package-manager package manager magicmirror_package_manager",
]
dependencies = [
"argcomplete",
"argparse",
"colorama",
"flask",
"flask-cors",
"flask-socketio",
"gevent",
"gevent-websocket",
"gitpython",
"gunicorn",
"prompt-toolkit",
"pygments",
"python-socketio[client]",
"importlib-resources",
"jinja2",
"requests",
"yaspin",
"packaging>=26.3",
]
[tool.mypy]
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true
follow_imports_for_stubs = false
strict_optional = false
warn_no_return = false
[tool.ruff]
line-length = 150
[tool.ruff.format]
preview = true
[tool.ruff.lint]
select = ["E", "F", "B", "I"]
ignore = ["E501", "E731", "E402"]
fixable = ["ALL"]
# Exclude certain directories or files from linting
exclude = [".git", "__pycache__", "venv", ".venv"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
artifacts = ["mmpm/ui/**"]
[tool.hatch.build.targets.wheel]
packages = ["mmpm"]
[tool.hatch.build.targets.sdist]
packages = ["mmpm"]
[project.urls]
Homepage = "https://github.com/Bee-Mar/mmpm"
Downloads = "https://github.com/Bee-Mar/mmpm/archive/4.7.0.tar.gz"
[project.scripts]
mmpm = "mmpm.entrypoint:main"
[dependency-groups]
dev = [
"mypy<2.0.0,>=1.14.1",
"codecov<3.0.0,>=2.1.13",
"types-requests<3.0.0.0,>=2.32.0.20241016",
"pytest<9.0.0,>=8.3.4",
"faker<34.0.0,>=33.3.1",
"coverage<8.0.0,>=7.6.10",
"ruff>=0.13.0",
]