- Configure Ruff for linting and formatting with pre-commit hooks - Add Makefile with convenient commands for development workflow - Create build and upload scripts for Gitea package registry - Update README with documentation for new features - Fix code quality issues identified by Ruff - Add development dependencies (ruff, pre-commit) to pyproject.toml - Update Python version requirement to >=3.9 - Add template for Gitea PyPI configuration - Bump version to 0.3.0 - All tests passing and code properly formatted
17 lines
490 B
Plaintext
17 lines
490 B
Plaintext
# Gitea PyPI Configuration Template
|
|
# Save this as ~/.pypirc and update with your credentials
|
|
|
|
[distutils]
|
|
index-servers = gitea
|
|
|
|
[gitea]
|
|
repository = https://gitea.parano.ch/api/packages/herel/pypi
|
|
username = herel
|
|
password = YOUR_GITEA_PERSONAL_ACCESS_TOKEN
|
|
|
|
# To create a personal access token in Gitea:
|
|
# 1. Go to your Gitea profile settings
|
|
# 2. Click on "Applications"
|
|
# 3. Generate a new token with package registry permissions
|
|
# 4. Copy the token and paste it above as the password
|