-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
108 lines (95 loc) · 2.59 KB
/
pyproject.toml
File metadata and controls
108 lines (95 loc) · 2.59 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[build-system]
requires = ["setuptools>=69", "setuptools_scm[toml]>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "toda"
dynamic = ["version"]
description = "Toda gives you the power to safely deploy files using symlinks on any operating system with Python installed."
readme = "README.md"
license = { text = "MPL-2.0" }
authors = [{ name = "ypcrts", email = "ypcrts@users.noreply.github.com" }]
keywords = ["dotfiles", "symlink", "environment"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: BSD",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Operating System :: MacOS",
"Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Intended Audience :: System Administrators",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
]
requires-python = ">=3.9"
[project.urls]
Homepage = "https://github.com/ypcrts/toda"
Repository = "https://github.com/ypcrts/toda"
Issues = "https://github.com/ypcrts/toda/issues"
[project.scripts]
toda = "toda.__main__:main"
[project.optional-dependencies]
dev = [
"black>=24.10",
"build>=1.2",
"mypy>=1.11",
"pytest>=8.3",
"pytest-cov>=5.0",
"ruff>=0.8",
"twine>=5.1",
]
[tool.setuptools.packages.find]
include = ["toda*"]
[tool.setuptools_scm]
fallback_version = "0.0.1"
local_scheme = "no-local-version"
[tool.black]
target-version = ["py310", "py311", "py312", "py313"]
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.venv
| \.tox
| build
| dist
)/
'''
[tool.ruff]
target-version = "py310"
line-length = 88
[tool.ruff.lint]
select = ["F"]
[tool.mypy]
python_version = "3.10"
warn_unused_configs = true
ignore_missing_imports = true
check_untyped_defs = false
warn_unused_ignores = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
[tool.coverage.run]
source = ["toda"]
branch = true
omit = ["tests/*"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError",
"if __name__ == .__main__.:",
]
show_missing = true