scihist 0.1.9.dev0__tar.gz → 0.1.10__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.
- scihist-0.1.10/.gitignore +24 -0
- {scihist-0.1.9.dev0 → scihist-0.1.10}/PKG-INFO +1 -1
- scihist-0.1.9.dev0/.gitignore +0 -16
- {scihist-0.1.9.dev0 → scihist-0.1.10}/README.md +0 -0
- {scihist-0.1.9.dev0 → scihist-0.1.10}/pyproject.toml +0 -0
- {scihist-0.1.9.dev0 → scihist-0.1.10}/src/scihist/__init__.py +0 -0
- {scihist-0.1.9.dev0 → scihist-0.1.10}/src/scihist/database.py +0 -0
- {scihist-0.1.9.dev0 → scihist-0.1.10}/src/scihist/foreach.py +0 -0
- {scihist-0.1.9.dev0 → scihist-0.1.10}/src/scihist/state.py +0 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
.venv
|
|
2
|
+
.DS_Store
|
|
3
|
+
*/*/__pycache__
|
|
4
|
+
others_projects/sciforge
|
|
5
|
+
scistack-gui/extension/node_modules/
|
|
6
|
+
scistack-gui/frontend/node_modules/__pycache__/
|
|
7
|
+
*.pyc
|
|
8
|
+
__pycache__/
|
|
9
|
+
*.pyc
|
|
10
|
+
*.pyo
|
|
11
|
+
*.egg-info/
|
|
12
|
+
# Python package build output (rebuilt fresh by CI on every publish; a
|
|
13
|
+
# committed dist/ gets deleted by `rm -rf dist` mid-build and dirties the
|
|
14
|
+
# tree for hatch-vcs). Excludes scistack-gui/extension/dist/, which is an
|
|
15
|
+
# intentionally committed compiled bundle, not a Python build artifact.
|
|
16
|
+
/dist/
|
|
17
|
+
/*/dist/
|
|
18
|
+
# Generated database artifacts (DuckDB data/lineage + write-ahead logs)
|
|
19
|
+
*.duckdb
|
|
20
|
+
*.duckdb.wal
|
|
21
|
+
*.wal
|
|
22
|
+
scistack-gui/frontend/node_modules/
|
|
23
|
+
# mkdocs build output (regenerated by `mkdocs build`)
|
|
24
|
+
/site/
|
scihist-0.1.9.dev0/.gitignore
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
.venv
|
|
2
|
-
.DS_Store
|
|
3
|
-
*/*/__pycache__
|
|
4
|
-
others_projects/sciforge
|
|
5
|
-
scistack-gui/extension/node_modules/
|
|
6
|
-
scistack-gui/frontend/node_modules/__pycache__/
|
|
7
|
-
*.pyc
|
|
8
|
-
__pycache__/
|
|
9
|
-
*.pyc
|
|
10
|
-
*.pyo
|
|
11
|
-
|
|
12
|
-
# Generated database artifacts (DuckDB data/lineage + write-ahead logs)
|
|
13
|
-
*.duckdb
|
|
14
|
-
*.duckdb.wal
|
|
15
|
-
*.wal
|
|
16
|
-
scistack-gui/frontend/node_modules/
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|