{"id":17691315,"url":"https://github.com/williamcanin/cookiecutter-python-package","last_synced_at":"2026-01-19T08:03:57.863Z","repository":{"id":38182935,"uuid":"259476002","full_name":"williamcanin/cookiecutter-python-package","owner":"williamcanin","description":":package: :snake: :cookie: With Cookiecutter Python Package, you can create your Python packages with a professional structure and with a lot of resources available.","archived":false,"fork":false,"pushed_at":"2024-03-20T15:33:03.000Z","size":30,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-07T07:47:12.778Z","etag":null,"topics":["cookiecutter","cookiecutter-template","poetry-generator","python","python-3"],"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/williamcanin.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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}},"created_at":"2020-04-27T22:58:32.000Z","updated_at":"2020-04-27T23:25:17.000Z","dependencies_parsed_at":"2024-10-24T14:33:03.754Z","dependency_job_id":"8f2ab9d7-9ee0-4c4d-a71b-3475a1ddc1e4","html_url":"https://github.com/williamcanin/cookiecutter-python-package","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/williamcanin/cookiecutter-python-package","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/williamcanin%2Fcookiecutter-python-package","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/williamcanin%2Fcookiecutter-python-package/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/williamcanin%2Fcookiecutter-python-package/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/williamcanin%2Fcookiecutter-python-package/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/williamcanin","download_url":"https://codeload.github.com/williamcanin/cookiecutter-python-package/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/williamcanin%2Fcookiecutter-python-package/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28563251,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T03:31:16.861Z","status":"ssl_error","status_checked_at":"2026-01-19T03:31:15.069Z","response_time":67,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["cookiecutter","cookiecutter-template","poetry-generator","python","python-3"],"created_at":"2024-10-24T12:08:15.990Z","updated_at":"2026-01-19T08:03:57.848Z","avatar_url":"https://github.com/williamcanin.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Cookiecutter Python Package\n\n![Python package](https://github.com/williamcanin/cookiecutter-python-package/workflows/Python%20package/badge.svg)\n\nWith **Cookiecutter Python Package**, you can create your Python packages with a professional structure and with a lot of resources available.\n\nPypkg Cookiecutter is a template inspired by the [Cookiecutter Pypackage](https://github.com/audreyr/cookiecutter-pypackage).\n\n## Requirements\n\n| Required        | Required version    |   How to verify     | How to install  |\n| --------------- | ------------------- | ------------------- | --------------- |\n| Git             |   \u003e= 2.25.0         | `git --version`     | [Git](http://git-scm.com/) |\n| Python          |   \u003e= 3.8            | `python --version`  | [Python](https://www.python.org/about/gettingstarted/) |\n| Black           |   \u003e= 19.10b0        | `black --version`   | [Black](https://pypi.org/project/black/) |\n| Cookiecutter    |   \u003e= 1.7            | `cookiecutter --version` | [Cookiecutter](https://pypi.org/project/cookiecutter/) |\n| Pip             |   \u003e= 20.0.2         | `pip --version`    | [Pip](https://pip.pypa.io/en/stable/installing/) |\n| *Poetry         |   \u003e= 1.0.5          | `poetry --version`     | [Poetry](https://python-poetry.org/docs/#installation) |\n\n\n\\* If chosen at creation\n\n## Using:\n\n```\n$ pip install cookiecutter --user\n$ cookiecutter https://github.com/williamcanin/cookiecutter-python-package.git\n```\nAfter that, go to the folder with the name of the project that you entered at the time of the questions. Example:\n\n```\n$ cd my_package\n```\n\n**Create the virtual machine, activate it and install the requirements:**\n\n```\n$ python -m venv venv\n$ . venv/bin/activate\n$ pip install --upgrade pip\n$ pip install -r requeriments_dev.txt requeriments.txt\n```\n\nor\n\n**Create the virtual machine, activate it and install the requirements using Poetry:**\n\n```\n$ poetry shell\n$ poetry install\n```\n\nThere, you can start to develop your Python package.\n\n## Developers of Cookiecutter Python Package\n\nIf you want to build something more in this project, prepare the environment like this:\n\n```\n$ git clone https://github.com/williamcanin/cookiecutter-python-package.git\n$ cd cookiecutter-python-package\n$ python -m venv venv\n$ . venv/bin/activate\n$ pip install --upgrade pip\n$ pip install -r requirements.txt\n```\n\n**Tests**\n\n```\n$ tox\n```\n\n## License\n\nThe gem is available as open source under the terms of the [MIT License](https://github.com/williamcanin/cookiecutter-python-package/blob/master/LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwilliamcanin%2Fcookiecutter-python-package","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwilliamcanin%2Fcookiecutter-python-package","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwilliamcanin%2Fcookiecutter-python-package/lists"}