{"id":28406820,"url":"https://github.com/git-afsantos/bake-a-py","last_synced_at":"2026-02-11T01:03:19.427Z","repository":{"id":38236568,"uuid":"436545413","full_name":"git-afsantos/bake-a-py","owner":"git-afsantos","description":"Package template for Python projects.","archived":false,"fork":false,"pushed_at":"2025-11-21T16:02:25.000Z","size":134,"stargazers_count":3,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-01-02T21:16:50.157Z","etag":null,"topics":["best-practices","codestyle","package","package-creation","project-template","python","python-package","release-automation","template"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/git-afsantos.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-12-09T08:53:47.000Z","updated_at":"2025-11-23T05:00:06.000Z","dependencies_parsed_at":"2023-02-01T06:15:58.600Z","dependency_job_id":"2124e8cc-0c0c-46aa-9e80-da96e29165eb","html_url":"https://github.com/git-afsantos/bake-a-py","commit_stats":{"total_commits":77,"total_committers":3,"mean_commits":"25.666666666666668","dds":0.5584415584415585,"last_synced_commit":"2d6647dfc03ee7aafa9bff27018ebfff23682f8b"},"previous_names":[],"tags_count":4,"template":true,"template_full_name":null,"purl":"pkg:github/git-afsantos/bake-a-py","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/git-afsantos%2Fbake-a-py","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/git-afsantos%2Fbake-a-py/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/git-afsantos%2Fbake-a-py/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/git-afsantos%2Fbake-a-py/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/git-afsantos","download_url":"https://codeload.github.com/git-afsantos/bake-a-py/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/git-afsantos%2Fbake-a-py/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29323967,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-11T00:34:26.354Z","status":"ssl_error","status_checked_at":"2026-02-11T00:34:09.494Z","response_time":65,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["best-practices","codestyle","package","package-creation","project-template","python","python-package","release-automation","template"],"created_at":"2025-06-01T23:00:49.565Z","updated_at":"2026-02-11T01:03:19.418Z","avatar_url":"https://github.com/git-afsantos.png","language":"Python","readme":"# Bake a Py\n\nThis project provides a template from which you can create your own Python packages and projects.\nIt uses modern tools and conventions to ensure a good development experience.\n\n- [Package Structure](#package-structure)\n- [GitHub Features](#github-features)\n- [Tooling](#tooling)\n\n## Package Structure\n\nPackage structure was inspired by various templates and recommended best practices, such as:\n\n- https://github.com/TezRomacH/python-package-template\n- https://github.com/pyscaffold/pyscaffold\n- https://github.com/f4str/python-package-template\n- https://github.com/audreyfeldroy/cookiecutter-pypackage\n- https://github.com/ionelmc/python-nameless\n\nIt provides a `src` directory, under which your own packages sit. Example files for `__init__.py`, `__main__.py` and `cli.py` are already provided.\n\nTests are placed under the `tests` directory, and documentation under the `docs` directory.\n\nTo start your new project, you should change its name, URL and metadata details at:\n\n1. `README.md`\n2. `CHANGELOG.md`\n3. `setup.py`\n4. `tests/*.py`\n5. `src/*`\n\n## GitHub Features\n\nThe `.github` directory comes with a number of files to configure certain GitHub features.\n\n- Various Issue templates can be found under `ISSUE_TEMPLATE`.\n- A Pull Request template can be found at `PULL_REQUEST_TEMPLATE.md`.\n- Automatically mark issues as stale after a period of inactivity. The configuration file can be found at `.stale.yml`.\n- Keep package dependencies up to date with Dependabot. The configuration file can be found at `dependabot.yml`.\n- Keep Release Drafts automatically up to date with Pull Requests, using the [Release Drafter GitHub Action](https://github.com/marketplace/actions/release-drafter). The configuration file can be found at `release-drafter.yml` and the workflow at `workflows/release-drafter.yml`.\n- Automatic package building and publishing when pushing a new version tag to `main`. The workflow can be found at `workflows/publish-package.yml`.\n\n## Tooling\n\nThis package sets up various `tox` environments for static checks, testing, building and publishing.\nIt is also configured with `pre-commit` hooks to perform static checks and automatic formatting.\n\nIf you do not use `tox`, you can build the package with `build` and install a development version with `pip`.\n\nAssume `cd` into the repository's root.\n\nTo install the `pre-commit` hooks:\n\n```bash\npre-commit install\n```\n\nTo run type checking:\n\n```bash\ntox -e typecheck\n```\n\nTo run linting tools:\n\n```bash\ntox -e lint\n```\n\nTo run automatic formatting:\n\n```bash\ntox -e format\n```\n\nTo run tests:\n\n```bash\ntox\n```\n\nTo build the package:\n\n```bash\ntox -e build\n```\n\nTo build the package (with `build`):\n\n```bash\npython -m build\n```\n\nTo clean the previous build files:\n\n```bash\ntox -e clean\n```\n\nTo test package publication (publish to *Test PyPI*):\n\n```bash\ntox -e publish\n```\n\nTo publish the package to PyPI:\n\n```bash\ntox -e publish -- --repository pypi\n```\n\nTo install an editable version:\n\n```bash\npip install -e .\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgit-afsantos%2Fbake-a-py","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgit-afsantos%2Fbake-a-py","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgit-afsantos%2Fbake-a-py/lists"}