https://github.com/phildini/csv-upc-omg
https://github.com/phildini/csv-upc-omg
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/phildini/csv-upc-omg
- Owner: phildini
- Created: 2025-06-03T08:00:31.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-03T18:56:35.000Z (about 1 year ago)
- Last Synced: 2025-10-09T20:14:36.325Z (8 months ago)
- Language: Python
- Size: 70.3 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CSV UPC OMG
A Python application for CSV and UPC processing.
## Installation
Install the package using uv:
```bash
uv pip install -e .
```
For development:
```bash
uv sync --all-extras
```
Set up pre-commit hooks (recommended):
```bash
uv run pre-commit install
```
## Usage
```bash
csv-upc-omg --help
```
## Development
Run tests:
```bash
uv run pytest
```
Format and lint code:
```bash
uv run ruff format .
uv run ruff check .
```
Type checking:
```bash
uv run mypy src/
```
Run all quality checks:
```bash
uv run pre-commit run --all-files
```
## License
BSD-3-Clause