plistsync 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- plistsync-0.0.1/.gitignore +40 -0
- plistsync-0.0.1/PKG-INFO +4 -0
- plistsync-0.0.1/pyproject.toml +60 -0
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
__pycache__
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
*custom.yml
|
|
5
|
+
local_data/*
|
|
6
|
+
|
|
7
|
+
# Logs
|
|
8
|
+
logs
|
|
9
|
+
*.log
|
|
10
|
+
npm-debug.log*
|
|
11
|
+
yarn-debug.log*
|
|
12
|
+
yarn-error.log*
|
|
13
|
+
pnpm-debug.log*
|
|
14
|
+
lerna-debug.log*
|
|
15
|
+
|
|
16
|
+
node_modules
|
|
17
|
+
dist
|
|
18
|
+
dist-ssr
|
|
19
|
+
*.local
|
|
20
|
+
*dump.rdb
|
|
21
|
+
.vite
|
|
22
|
+
|
|
23
|
+
.conda
|
|
24
|
+
.pnpm-store
|
|
25
|
+
|
|
26
|
+
# Editor directories and files
|
|
27
|
+
*.code-workspace
|
|
28
|
+
.vscode/*
|
|
29
|
+
!.vscode/extensions.json
|
|
30
|
+
.idea
|
|
31
|
+
.DS_Store
|
|
32
|
+
*.suo
|
|
33
|
+
*.ntvs*
|
|
34
|
+
*.njsproj
|
|
35
|
+
*.sln
|
|
36
|
+
*.sw?
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
# Docs
|
|
40
|
+
backend/docs/build
|
plistsync-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "plistsync"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
requires-python = ">=3.11"
|
|
5
|
+
dependencies = []
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
[build-system]
|
|
9
|
+
requires = ["hatchling"]
|
|
10
|
+
build-backend = "hatchling.build"
|
|
11
|
+
|
|
12
|
+
[tool.hatch.build.targets.wheel]
|
|
13
|
+
packages = ["plistsync"]
|
|
14
|
+
|
|
15
|
+
[tool.hatch.metadata]
|
|
16
|
+
# Needed to install from git directly
|
|
17
|
+
allow-direct-references = true
|
|
18
|
+
|
|
19
|
+
[tool.ruff]
|
|
20
|
+
include = ["pyproject.toml", "plistsync/**/*.py", "tests/**/*.py"]
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
[tool.ruff.lint]
|
|
24
|
+
select = [
|
|
25
|
+
"I",
|
|
26
|
+
"D",
|
|
27
|
+
# Augment the convention by requiring an imperative mood for all docstrings.
|
|
28
|
+
"D401",
|
|
29
|
+
# Unused imports
|
|
30
|
+
]
|
|
31
|
+
ignore = [
|
|
32
|
+
# Ignore req. for public facing functions docstrings
|
|
33
|
+
"F401",
|
|
34
|
+
"D10",
|
|
35
|
+
"D202",
|
|
36
|
+
]
|
|
37
|
+
fixable = ["ALL"]
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
[tool.ruff.lint.per-file-ignores]
|
|
41
|
+
"**/tests/**" = ["D", "I", "S", "W"]
|
|
42
|
+
"**__main__.py" = ["D103"]
|
|
43
|
+
|
|
44
|
+
[tool.ruff.lint.pydocstyle]
|
|
45
|
+
convention = "numpy"
|
|
46
|
+
|
|
47
|
+
[tool.pytest.ini_options]
|
|
48
|
+
addopts = ["--import-mode=importlib", "--cov=."]
|
|
49
|
+
filterwarnings = ["error", "ignore::DeprecationWarning"]
|
|
50
|
+
pythonpath = ["."]
|
|
51
|
+
asyncio_default_fixture_loop_scope = "function"
|
|
52
|
+
|
|
53
|
+
[tool.coverage.report]
|
|
54
|
+
omit = ["*/tests/*"]
|
|
55
|
+
exclude_also = ["raise NotImplementedError", "@(abc\\.)?abstractmethod"]
|
|
56
|
+
|
|
57
|
+
[tool.mypy]
|
|
58
|
+
check_untyped_defs = true
|
|
59
|
+
disallow_untyped_decorators = true
|
|
60
|
+
allow_redefinition = true
|