Package configuration example using bleeding edge toolset.
Project description
modernpackage
This package allows to quickly initialise new Python package using bleeding edge tools like linters, just run:
pip install modernpackage
modernpackage <your-package-name>
Now you are able to:
cd <your-package-name>
make check # To run tests and linters
make publish # To publish your new package to PyPi.org to make it accessable to everyone
This is also a boilerplate for a new python package, so you can create a new package this way as well:
git clone git@github.com:albertas/modernpackage.git <your-package-name>
cd <your-package-name>
make init <your-package-name>
- to start your modern package.
Development
Commonly used commands for package development:
make check
- run unit tests and linters.make fix
- format code and fix detected fixable issues.make publish
- publishes current package version to pypi.org.make compile
- bump and freeze dependency versions in requirements*.txt filesmake sync
- upgrade installed dependencies in Virtual Environment (executed aftermake compile
)
Toolset
This package uses these cutting edge tools:
- ruff - for linting and code formatting
- mypy - for type checking
- pip-audit - for known vulnerability detection in dependencies
- deadcode - for unused code detection
- pytest - for collecting and running unit tests
- coverage - for code coverage by unit tests
- hatch - for publishing package to pypi.org
- uv - for Python virtual environment and dependency management
- pyproject.toml - configuration file for all tools
- Makefile - aliases for commonly used command line commands
Feature requests:
- Newly installed package tests are failing. They should pass.
- Newly installed package could have virtualenv initialised.
- Check if
git
is available before trying to initialise the repository. - remove init Makefile alias and cli.py command python files.
- Update package version to 0.0.1 during
make init
. Version should be initialised to be v0.0.1 - make a cli command: this package should be installable. Ideally this flow should work:
pip install modernpackage
modernpackage mynewpackage
cd mynewpackage
&&make check
&&make publish
- Enable github and gitlab pipeline files to run
make check
in the pipeline. - Add pre-commit hooks with all the tools enabled.
- codspeed.io could be considered for Continuous integration pipeline
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
modernpackage-0.0.6.tar.gz
(4.3 kB
view hashes)
Built Distribution
Close
Hashes for modernpackage-0.0.6-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 399abebf4acec0ad1c14d5ca8e7ba43015b83185663b4bfef97494db30b86b70 |
|
MD5 | 1d406d20449c04a267f3ccaedae94576 |
|
BLAKE2b-256 | 0360c07a5f3a8dd4b50078f45c053a824e67eff9a09bb28b12310ecac5b2b85d |