apppy-fs 0.1.0__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.
- apppy_fs-0.1.0/.gitignore +28 -0
- apppy_fs-0.1.0/PKG-INFO +16 -0
- apppy_fs-0.1.0/README.md +0 -0
- apppy_fs-0.1.0/fs.mk +23 -0
- apppy_fs-0.1.0/pyproject.toml +30 -0
- apppy_fs-0.1.0/src/apppy/fs/__init__.py +949 -0
- apppy_fs-0.1.0/src/apppy/fs/errors.py +56 -0
- apppy_fs-0.1.0/src/apppy/fs/fs_unit_test.py +240 -0
- apppy_fs-0.1.0/src/apppy/fs/hash.py +22 -0
- apppy_fs-0.1.0/src/apppy/fs/local.py +131 -0
- apppy_fs-0.1.0/src/apppy/fs/local_test.py +73 -0
- apppy_fs-0.1.0/src/apppy/fs/local_unit_test.py +167 -0
- apppy_fs-0.1.0/src/apppy/fs/test_examples/quick_brown_fox.txt +1 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
__generated__/
|
|
2
|
+
dist/
|
|
3
|
+
*.egg-info
|
|
4
|
+
.env
|
|
5
|
+
.env.*
|
|
6
|
+
*.env
|
|
7
|
+
!.env.ci
|
|
8
|
+
.file_store/
|
|
9
|
+
*.pid
|
|
10
|
+
.python-version
|
|
11
|
+
*.secrets
|
|
12
|
+
.secrets
|
|
13
|
+
*.tar.gz
|
|
14
|
+
*.test_output/
|
|
15
|
+
.test_output/
|
|
16
|
+
uv.lock
|
|
17
|
+
*.whl
|
|
18
|
+
|
|
19
|
+
# System files
|
|
20
|
+
__pycache__
|
|
21
|
+
.DS_Store
|
|
22
|
+
|
|
23
|
+
# Editor files
|
|
24
|
+
*.sublime-project
|
|
25
|
+
*.sublime-workspace
|
|
26
|
+
.vscode/*
|
|
27
|
+
!.vscode/settings.json
|
|
28
|
+
|
apppy_fs-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: apppy-fs
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Python filesystem definitions for server development
|
|
5
|
+
Project-URL: Homepage, https://github.com/spals/apppy
|
|
6
|
+
Author: Tim Kral
|
|
7
|
+
License: MIT
|
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Requires-Python: >=3.11
|
|
11
|
+
Requires-Dist: apppy-env>=0.1.0
|
|
12
|
+
Requires-Dist: apppy-fastql>=0.1.0
|
|
13
|
+
Requires-Dist: apppy-generic>=0.1.0
|
|
14
|
+
Requires-Dist: apppy-logger>=0.1.0
|
|
15
|
+
Requires-Dist: fsspec==2025.9.0
|
|
16
|
+
Requires-Dist: s3fs==2025.9.0
|
apppy_fs-0.1.0/README.md
ADDED
|
File without changes
|
apppy_fs-0.1.0/fs.mk
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
ifndef APPPY_FS_MK_INCLUDED
|
|
2
|
+
APPPY_FS_MK_INCLUDED := 1
|
|
3
|
+
FS_PKG_DIR := $(dir $(abspath $(lastword $(MAKEFILE_LIST))))
|
|
4
|
+
|
|
5
|
+
.PHONY: fs fs-dev fs/build fs/clean fs/install fs/install-dev
|
|
6
|
+
|
|
7
|
+
fs: fs/clean fs/install
|
|
8
|
+
|
|
9
|
+
fs-dev: fs/clean fs/install-dev
|
|
10
|
+
|
|
11
|
+
fs/build:
|
|
12
|
+
cd $(FS_PKG_DIR) && uvx --from build pyproject-build
|
|
13
|
+
|
|
14
|
+
fs/clean:
|
|
15
|
+
cd $(FS_PKG_DIR) && rm -rf dist/ *.egg-info .venv
|
|
16
|
+
|
|
17
|
+
fs/install: fs/build
|
|
18
|
+
cd $(FS_PKG_DIR) && uv pip install dist/*.whl
|
|
19
|
+
|
|
20
|
+
fs/install-dev:
|
|
21
|
+
cd $(FS_PKG_DIR) && uv pip install -e .
|
|
22
|
+
|
|
23
|
+
endif # APPPY_FS_MK_INCLUDED
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling>=1.25"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "apppy-fs"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Python filesystem definitions for server development"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.11"
|
|
11
|
+
license = {text = "MIT"}
|
|
12
|
+
authors = [{ name = "Tim Kral" }]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Programming Language :: Python :: 3",
|
|
15
|
+
"License :: OSI Approved :: MIT License",
|
|
16
|
+
]
|
|
17
|
+
dependencies = [
|
|
18
|
+
"apppy-env>=0.1.0",
|
|
19
|
+
"apppy-fastql>=0.1.0",
|
|
20
|
+
"apppy-generic>=0.1.0",
|
|
21
|
+
"apppy-logger>=0.1.0",
|
|
22
|
+
"fsspec==2025.9.0",
|
|
23
|
+
"s3fs==2025.9.0"
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
[project.urls]
|
|
27
|
+
Homepage = "https://github.com/spals/apppy"
|
|
28
|
+
|
|
29
|
+
[tool.hatch.build.targets.wheel]
|
|
30
|
+
packages = ["src/apppy"]
|