pysfi 0.1.0__py3-none-any.whl → 0.1.4__py3-none-any.whl
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.
- pysfi-0.1.4.dist-info/METADATA +107 -0
- pysfi-0.1.4.dist-info/RECORD +17 -0
- {pysfi-0.1.0.dist-info → pysfi-0.1.4.dist-info}/WHEEL +1 -1
- {pysfi-0.1.0.dist-info → pysfi-0.1.4.dist-info}/entry_points.txt +1 -0
- sfi/__init__.py +3 -0
- sfi/alarmclock/alarmclock.py +367 -367
- sfi/bumpversion/__init__.py +3 -0
- sfi/bumpversion/bumpversion.py +535 -0
- sfi/embedinstall/embedinstall.py +418 -418
- sfi/makepython/makepython.py +310 -68
- sfi/pyloadergen/pyloadergen.py +995 -1042
- pysfi-0.1.0.dist-info/METADATA +0 -78
- pysfi-0.1.0.dist-info/RECORD +0 -17
- sfi/pyloadergen/tests/__init__.py +0 -0
- sfi/pyloadergen/tests/test_pyloadergen.py +0 -290
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pysfi
|
|
3
|
+
Version: 0.1.4
|
|
4
|
+
Summary: Single File commands for Interactive python.
|
|
5
|
+
Requires-Python: >=3.8
|
|
6
|
+
Requires-Dist: tomli>=2.4.0; python_version < '3.11'
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
# pysfi
|
|
10
|
+
|
|
11
|
+
Single File commands for Interactive python.
|
|
12
|
+
|
|
13
|
+
## Overview
|
|
14
|
+
|
|
15
|
+
pysfi is a Python project that provides single-file command-line utilities, designed to be lightweight and easy-to-use.
|
|
16
|
+
|
|
17
|
+
## Available Commands
|
|
18
|
+
|
|
19
|
+
- **alarmclk**: Alarm clock functionality
|
|
20
|
+
- **[bumpversion](sfi/bumpversion/README.md)**: Automated version number management tool
|
|
21
|
+
- **embedinstall**: Embed installation utilities
|
|
22
|
+
- **[filedate](sfi/filedate/README.md)**: A file date management tool that normalizes date prefixes in filenames
|
|
23
|
+
- **mkp**: Make Python project utilities
|
|
24
|
+
- **projectparse**: Project parsing and analysis tools
|
|
25
|
+
- **pyloadergen**: Python loader code generation
|
|
26
|
+
- **pypacker**: Python packaging utilities
|
|
27
|
+
|
|
28
|
+
## Installation
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
# Install using uv (recommended)
|
|
32
|
+
uv add pysfi
|
|
33
|
+
|
|
34
|
+
# Or using pip
|
|
35
|
+
pip install pysfi
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## Development
|
|
39
|
+
|
|
40
|
+
### Requirements
|
|
41
|
+
|
|
42
|
+
- Python >= 3.8
|
|
43
|
+
- [uv](https://github.com/astral-sh/uv) (recommended) or pip
|
|
44
|
+
|
|
45
|
+
### Development Dependencies
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
uv pip install -e ".[dev]"
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
### Code Standards
|
|
52
|
+
|
|
53
|
+
The project uses Ruff for code linting and formatting:
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
# Check code
|
|
57
|
+
ruff check .
|
|
58
|
+
|
|
59
|
+
# Format code
|
|
60
|
+
ruff format .
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
## Project Structure
|
|
64
|
+
|
|
65
|
+
```bash
|
|
66
|
+
pysfi/
|
|
67
|
+
├── pyproject.toml # Main project configuration
|
|
68
|
+
├── README.md
|
|
69
|
+
└── sfi/
|
|
70
|
+
├── __init__.py
|
|
71
|
+
├── alarmclock/ # alarmclk command module
|
|
72
|
+
│ ├── alarmclock.py
|
|
73
|
+
│ ├── pyproject.toml
|
|
74
|
+
│ └── __init__.py
|
|
75
|
+
├── embedinstall/ # embedinstall command module
|
|
76
|
+
│ ├── embedinstall.py
|
|
77
|
+
│ ├── pyproject.toml
|
|
78
|
+
│ └── __init__.py
|
|
79
|
+
├── filedate/ # filedate command module
|
|
80
|
+
│ ├── filedate.py
|
|
81
|
+
│ ├── pyproject.toml
|
|
82
|
+
│ ├── README.md # Detailed documentation
|
|
83
|
+
│ └── __init__.py
|
|
84
|
+
├── makepython/ # mkp command module
|
|
85
|
+
│ ├── makepython.py
|
|
86
|
+
│ ├── pyproject.toml
|
|
87
|
+
│ └── __init__.py
|
|
88
|
+
├── projectparse/ # projectparse command module
|
|
89
|
+
│ ├── projectparse.py
|
|
90
|
+
│ ├── pyproject.toml
|
|
91
|
+
│ └── __init__.py
|
|
92
|
+
├── pyloadergen/ # pyloadergen command module
|
|
93
|
+
│ ├── pyloadergen.py
|
|
94
|
+
│ ├── pyproject.toml
|
|
95
|
+
│ └── __init__.py
|
|
96
|
+
└── pypacker/ # pypacker command module
|
|
97
|
+
├── fspacker.py
|
|
98
|
+
└── pyproject.toml
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
## License
|
|
102
|
+
|
|
103
|
+
MIT License
|
|
104
|
+
|
|
105
|
+
## Contributing
|
|
106
|
+
|
|
107
|
+
Issues and Pull Requests are welcome!
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
sfi/__init__.py,sha256=xigBx2zkhJtzVxIy_WQ4O8Wu4c5h9Lh_TFl7Xven-qk,74
|
|
2
|
+
sfi/alarmclock/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
sfi/alarmclock/alarmclock.py,sha256=N_UYS5WLTpELLX13cimGP_xUjDwOWQmpig5LRzdnW2M,12142
|
|
4
|
+
sfi/bumpversion/__init__.py,sha256=0EjY5RZ96HUo4PoYDaUMOO7ZX3FCx1QPHfqvBXxG2ao,85
|
|
5
|
+
sfi/bumpversion/bumpversion.py,sha256=4_rZmrmHwMVSlidlNFpyxot5XII6PKAOFsq88MrGWw4,20200
|
|
6
|
+
sfi/embedinstall/embedinstall.py,sha256=Trw9NGOw0jLwfbIgkjJZMC3AUS_-IrPYgIQZg9TmiRQ,14518
|
|
7
|
+
sfi/filedate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
+
sfi/filedate/filedate.py,sha256=DpVp26lumE_Lz_4TgqUEX8IxtK3Y6yHSEFV8qJyegyk,3645
|
|
9
|
+
sfi/makepython/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
|
+
sfi/makepython/makepython.py,sha256=-fMGWvPlbW5cDvUPt6Cdy77tt1rN6n4iBegNpwzvlyM,10232
|
|
11
|
+
sfi/projectparse/projectparse.py,sha256=Ojg-z4lZEtjEBpJYWyznTgL307N45AxlQKnRkEH0P70,5525
|
|
12
|
+
sfi/pyloadergen/pyloadergen.py,sha256=_a1VPqEfYSCxInOwozRLMvluKzTUHDyUV_RtNAehnlc,31428
|
|
13
|
+
sfi/pypacker/fspacker.py,sha256=3tlS7qiWoH_kOzsp9eSWsQ-SY7-bSTugwfB-HIL69iE,3238
|
|
14
|
+
pysfi-0.1.4.dist-info/METADATA,sha256=oO1UM4mMejBhr4IODoaSX7J1aOVlR9rn79o6Nbga4x0,2755
|
|
15
|
+
pysfi-0.1.4.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
16
|
+
pysfi-0.1.4.dist-info/entry_points.txt,sha256=6XalkBAzJXRaYaPydlk_Q6Sr6aPOAv8v_5ZBdvg63Lk,367
|
|
17
|
+
pysfi-0.1.4.dist-info/RECORD,,
|
sfi/__init__.py
CHANGED