chore: add pyproject.toml and .gitignore #13
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
The repository has no packaging configuration and no .gitignore. This means:
pyproject.toml,setup.py, orsetup.cfg__pycache__/tracked in git -- no.gitignoreto exclude bytecode__version__ = "0.1.0"exists in code but is not surfaced to pip/setuptoolsProposed Changes
1. Add
pyproject.tomlMinimal config since the library has zero external dependencies:
2. Add
.gitignore3. Clean up committed
__pycache__/Remove any
__pycache__/directories already tracked in git.