A lightweight Python Repo for calculating personal income taxes. Contributions are welcome.
python3 -m pip install easytax
python3 examples/example.py
- Clone the taxes repo with:
git clone https://github.com/leehagoodjames/taxes.git
- Change directories to the project's root with:
cd taxes
- Ensure tests pass with:
python3 -m unittest discover tests
- Make awesome changes!
- Increment the version in
pyproject.toml
- Build with:
rm -rf dist; python3 -m build
- Upload to pypi with:
python3 -m twine upload --repository pypi dist/*