nbsync 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.
@@ -0,0 +1,7 @@
1
+ .coverage*
2
+ .venv/
3
+ __pycache__/
4
+ dist/
5
+ lcov.info
6
+ site/
7
+ uv.lock
nbsync-0.0.1/LICENSE ADDED
@@ -0,0 +1,9 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2020-present daizutabi <daizutabi@gmail.com>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
+
7
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
+
9
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
nbsync-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,29 @@
1
+ Metadata-Version: 2.4
2
+ Name: nbsync
3
+ Version: 0.0.1
4
+ Summary: Tools for notebook synchronization and management
5
+ Author-email: daizutabi <daizutabi@gmail.com>
6
+ License: MIT License
7
+
8
+ Copyright (c) 2020-present daizutabi <daizutabi@gmail.com>
9
+
10
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
15
+ License-File: LICENSE
16
+ Keywords: content-management,documentation,extraction,jupyter,markdown,notebook,visualization
17
+ Classifier: Development Status :: 4 - Beta
18
+ Classifier: Programming Language :: Python
19
+ Classifier: Programming Language :: Python :: 3.10
20
+ Classifier: Programming Language :: Python :: 3.11
21
+ Classifier: Programming Language :: Python :: 3.12
22
+ Classifier: Programming Language :: Python :: 3.13
23
+ Classifier: Topic :: Documentation
24
+ Classifier: Topic :: Software Development :: Documentation
25
+ Classifier: Topic :: Text Processing :: Markup :: Markdown
26
+ Requires-Python: >=3.10
27
+ Description-Content-Type: text/markdown
28
+
29
+ # nbsync-monorepo
nbsync-0.0.1/README.md ADDED
@@ -0,0 +1 @@
1
+ # nbsync-monorepo
@@ -0,0 +1,108 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "nbsync"
7
+ version = "0.0.1"
8
+ description = "Tools for notebook synchronization and management"
9
+ readme = "README.md"
10
+ license = { file = "LICENSE" }
11
+ authors = [{ name = "daizutabi", email = "daizutabi@gmail.com" }]
12
+ keywords = [
13
+ "jupyter",
14
+ "notebook",
15
+ "extraction",
16
+ "content-management",
17
+ "visualization",
18
+ "markdown",
19
+ "documentation",
20
+ ]
21
+ classifiers = [
22
+ "Development Status :: 4 - Beta",
23
+ "Programming Language :: Python",
24
+ "Programming Language :: Python :: 3.10",
25
+ "Programming Language :: Python :: 3.11",
26
+ "Programming Language :: Python :: 3.12",
27
+ "Programming Language :: Python :: 3.13",
28
+ "Topic :: Documentation",
29
+ "Topic :: Software Development :: Documentation",
30
+ "Topic :: Text Processing :: Markup :: Markdown",
31
+ ]
32
+ requires-python = ">=3.10"
33
+ dependencies = []
34
+
35
+ # [project.urls]
36
+ # Documentation = "https://daizutabi.github.io/nbstore/"
37
+ # Source = "https://github.com/daizutabi/nbstore"
38
+ # Issues = "https://github.com/daizutabi/nbstore/issues"
39
+
40
+ # [dependency-groups]
41
+ # dev = [
42
+ # "cairosvg>=2.7",
43
+ # "hvplot>=0.11",
44
+ # "ipykernel>=6.29",
45
+ # "ipython>=8",
46
+ # "matplotlib>=3.10",
47
+ # "nbconvert>=7",
48
+ # "numpy>=2.2",
49
+ # "pandas>=2.2",
50
+ # "pillow>=11",
51
+ # "polars>=1.22",
52
+ # "pyarrow>=19",
53
+ # "pytest-clarity",
54
+ # "pytest-cov",
55
+ # "pytest-randomly",
56
+ # "pytest-xdist>=3.6",
57
+ # "ruff>=0.11",
58
+ # "seaborn>=0.13",
59
+ # ]
60
+ # docs = ["mkapi", "mkdocs-material"]
61
+
62
+ # [tool.pytest.ini_options]
63
+ # testpaths = ["src", "tests"]
64
+ # addopts = ["--doctest-modules", "--cov=nbstore", "--cov-report=lcov:lcov.info"]
65
+
66
+ # [tool.coverage.report]
67
+ # exclude_lines = ["if TYPE_CHECKING:", "no cov", "raise NotImplementedError"]
68
+ # skip_covered = true
69
+
70
+ # [tool.ruff]
71
+ # line-length = 88
72
+ # target-version = "py310"
73
+
74
+ # [tool.ruff.lint]
75
+ # select = ["ALL"]
76
+ # unfixable = ["F401"]
77
+ # ignore = [
78
+ # "A002",
79
+ # "A005",
80
+ # "ANN001",
81
+ # "ANN002",
82
+ # "ANN003",
83
+ # "ANN201",
84
+ # "ARG001",
85
+ # "ARG002",
86
+ # "C901",
87
+ # "D",
88
+ # "D105",
89
+ # "D203",
90
+ # "D213",
91
+ # "FBT001",
92
+ # "FBT002",
93
+ # "PERF401",
94
+ # "PGH003",
95
+ # "PLR2004",
96
+ # "SIM102",
97
+ # "SLF001",
98
+ # ]
99
+
100
+ # [tool.ruff.lint.per-file-ignores]
101
+ # "**/tests/*" = ["ANN", "ARG", "D", "FBT", "NPY", "PD", "PLR", "RUF", "S"]
102
+ # "**/jupyter/*" = ["ERA001", "T201"]
103
+
104
+ # [tool.pyright]
105
+ # include = ["src", "tests"]
106
+ # strictDictionaryInference = true
107
+ # strictListInference = true
108
+ # strictSetInference = true
File without changes
File without changes