dataknobs-common 1.0.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.
- dataknobs_common-1.0.0/.gitignore +47 -0
- dataknobs_common-1.0.0/.python-version +1 -0
- dataknobs_common-1.0.0/PKG-INFO +47 -0
- dataknobs_common-1.0.0/README.md +36 -0
- dataknobs_common-1.0.0/pyproject.toml +18 -0
- dataknobs_common-1.0.0/src/dataknobs_common/__init__.py +3 -0
- dataknobs_common-1.0.0/tests/test_version.py +10 -0
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
.#*
|
|
2
|
+
*~
|
|
3
|
+
*#
|
|
4
|
+
.idea
|
|
5
|
+
.vscode
|
|
6
|
+
.pydevproject
|
|
7
|
+
venv/
|
|
8
|
+
.cache
|
|
9
|
+
**/.*env
|
|
10
|
+
*.pyc
|
|
11
|
+
**/__pycache__
|
|
12
|
+
.pytest_cache/
|
|
13
|
+
dist
|
|
14
|
+
.eggs/
|
|
15
|
+
*.egg-info
|
|
16
|
+
**/build
|
|
17
|
+
*.swp
|
|
18
|
+
*.orig
|
|
19
|
+
.project
|
|
20
|
+
.coverage*
|
|
21
|
+
_version.py.bld
|
|
22
|
+
.mypy_cache
|
|
23
|
+
**/build.log
|
|
24
|
+
.eggs
|
|
25
|
+
ignored
|
|
26
|
+
**/.ipynb_checkpoints
|
|
27
|
+
.s3_cache
|
|
28
|
+
.Trash-*
|
|
29
|
+
.DS_Store
|
|
30
|
+
**/_tmp
|
|
31
|
+
.data
|
|
32
|
+
*.so
|
|
33
|
+
.aws
|
|
34
|
+
VERSION
|
|
35
|
+
activate
|
|
36
|
+
.tox
|
|
37
|
+
.docker
|
|
38
|
+
.pypirc
|
|
39
|
+
|
|
40
|
+
# uv
|
|
41
|
+
.venv/
|
|
42
|
+
uv.lock
|
|
43
|
+
test-env/
|
|
44
|
+
.uv-cache/
|
|
45
|
+
|
|
46
|
+
# MkDocs documentation
|
|
47
|
+
site/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.9
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: dataknobs-common
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Common utilities and base classes for dataknobs packages
|
|
5
|
+
Author-email: Spence Koehler <KoehlerSB747@gmail.com>
|
|
6
|
+
Requires-Python: >=3.10
|
|
7
|
+
Requires-Dist: more-itertools>=8.10.0
|
|
8
|
+
Requires-Dist: numpy>=1.21.0
|
|
9
|
+
Requires-Dist: python-dotenv>=0.19.0
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# dataknobs-common
|
|
13
|
+
|
|
14
|
+
Common utilities and base classes for dataknobs packages.
|
|
15
|
+
|
|
16
|
+
## Installation
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
pip install dataknobs-common
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Features
|
|
23
|
+
|
|
24
|
+
This package provides shared functionality used across all dataknobs packages:
|
|
25
|
+
|
|
26
|
+
- Base utilities
|
|
27
|
+
- Common helper functions
|
|
28
|
+
- Shared constants and configurations
|
|
29
|
+
- Core dependencies
|
|
30
|
+
|
|
31
|
+
## Usage
|
|
32
|
+
|
|
33
|
+
```python
|
|
34
|
+
from dataknobs_common import __version__
|
|
35
|
+
|
|
36
|
+
print(f"Using dataknobs-common version {__version__}")
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
## Dependencies
|
|
40
|
+
|
|
41
|
+
- numpy
|
|
42
|
+
- python-dotenv
|
|
43
|
+
- more-itertools
|
|
44
|
+
|
|
45
|
+
## License
|
|
46
|
+
|
|
47
|
+
See LICENSE file in the root repository.
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# dataknobs-common
|
|
2
|
+
|
|
3
|
+
Common utilities and base classes for dataknobs packages.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install dataknobs-common
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Features
|
|
12
|
+
|
|
13
|
+
This package provides shared functionality used across all dataknobs packages:
|
|
14
|
+
|
|
15
|
+
- Base utilities
|
|
16
|
+
- Common helper functions
|
|
17
|
+
- Shared constants and configurations
|
|
18
|
+
- Core dependencies
|
|
19
|
+
|
|
20
|
+
## Usage
|
|
21
|
+
|
|
22
|
+
```python
|
|
23
|
+
from dataknobs_common import __version__
|
|
24
|
+
|
|
25
|
+
print(f"Using dataknobs-common version {__version__}")
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Dependencies
|
|
29
|
+
|
|
30
|
+
- numpy
|
|
31
|
+
- python-dotenv
|
|
32
|
+
- more-itertools
|
|
33
|
+
|
|
34
|
+
## License
|
|
35
|
+
|
|
36
|
+
See LICENSE file in the root repository.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "dataknobs-common"
|
|
3
|
+
version = "1.0.0"
|
|
4
|
+
description = "Common utilities and base classes for dataknobs packages"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
authors = [
|
|
7
|
+
{ name = "Spence Koehler", email = "KoehlerSB747@gmail.com" }
|
|
8
|
+
]
|
|
9
|
+
requires-python = ">=3.10"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"numpy>=1.21.0",
|
|
12
|
+
"python-dotenv>=0.19.0",
|
|
13
|
+
"more-itertools>=8.10.0",
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
[build-system]
|
|
17
|
+
requires = ["hatchling"]
|
|
18
|
+
build-backend = "hatchling.build"
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"""Test common package basics."""
|
|
2
|
+
|
|
3
|
+
import dataknobs_common
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
def test_version():
|
|
7
|
+
"""Test that version is defined."""
|
|
8
|
+
assert hasattr(dataknobs_common, "__version__")
|
|
9
|
+
assert isinstance(dataknobs_common.__version__, str)
|
|
10
|
+
assert dataknobs_common.__version__ == "1.0.0"
|