-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (45 loc) · 990 Bytes
/
pyproject.toml
File metadata and controls
48 lines (45 loc) · 990 Bytes
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
[project]
name = "mrg"
version = "0.2.2"
description = "mrg - Clean miscellaneous files created by macOS"
license = "Apache-2.0"
readme = "README.md"
authors = [
{ name = "ilotoki0804", email = "ilotoki0804@gmail.com" }
]
keywords = [
"mrg",
"macOS",
"clean",
"cleaner",
"normalize",
"unicode",
"NFC",
"AppleDouble",
"dot underscore",
"dot underscored",
"ds_store",
"tool",
"cli",
]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Typing :: Typed",
]
requires-python = ">=3.13"
dependencies = []
[project.scripts]
mrg = "mrg.__main__:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-cov>=7.1.0",
]