-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
98 lines (86 loc) · 2.7 KB
/
Copy pathpyproject.toml
File metadata and controls
98 lines (86 loc) · 2.7 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dazzlelink"
dynamic = ["version"]
description = "Cross-platform tool for preserving and managing symbolic links"
readme = "README.md"
authors = [
{name = "Dustin Darcy", email = "dustindarcy@gmail.com"}
]
license = {text = "GPL-3.0-or-later"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: OS Independent",
"Topic :: System :: Filesystems",
"Topic :: Utilities",
]
keywords = ["symlinks", "symbolic links", "network paths", "UNC paths", "file management", "dazzlelink"]
requires-python = ">=3.10"
dependencies = [
"pywin32>=223; sys_platform == 'win32'",
# The link-record core lives in dazzle-linklib (L2); the tool consumes it.
"dazzle-linklib>=0.2.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"flake8>=5.0.0",
"mypy>=0.900",
]
docs = [
"sphinx>=4.0.0",
"sphinx-rtd-theme>=1.0.0",
]
[project.urls]
Homepage = "https://github.com/DazzleTools/dazzlelink"
Repository = "https://github.com/DazzleTools/dazzlelink"
Issues = "https://github.com/DazzleTools/dazzlelink/issues"
Documentation = "https://github.com/DazzleTools/dazzlelink#readme"
[project.scripts]
dazzlelink = "dazzlelink.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
include = ["dazzlelink", "dazzlelink.*"]
[tool.setuptools.dynamic]
version = {attr = "dazzlelink._version.PIP_VERSION"}
[tool.flake8]
max-line-length = 127
max-complexity = 10
[tool.black]
line-length = 100
target-version = ['py310', 'py311', 'py312']
[tool.isort]
profile = "black"
line_length = 100
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false
disallow_incomplete_defs = false
[tool.repokit-common]
version-source = "src/dazzlelink/_version.py"
changelog = "CHANGELOG.md"
repo-url = "https://github.com/DazzleTools/dazzlelink"
tag-prefix = "v"
private-patterns = ["private/", "local/", ".env"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_functions = "test_*"
python_classes = "Test*"
addopts = "--cov=dazzlelink --cov-report=term-missing"