{"id":37084826,"url":"https://github.com/wilfredinni/do-pack","last_synced_at":"2026-01-14T10:24:46.740Z","repository":{"id":57423644,"uuid":"121968922","full_name":"wilfredinni/do-pack","owner":"wilfredinni","description":"A simple and quick command line tool to create python packages.","archived":true,"fork":false,"pushed_at":"2018-03-11T16:35:42.000Z","size":141,"stargazers_count":4,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-09-07T08:21:24.839Z","etag":null,"topics":["cli","command-line-tool","package-creation","packagegenerator","project-creation","project-templates","python"],"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/wilfredinni.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":"CONTRIBUTING.rst","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-02-18T16:32:09.000Z","updated_at":"2023-07-25T14:15:07.000Z","dependencies_parsed_at":"2022-08-30T03:51:32.778Z","dependency_job_id":null,"html_url":"https://github.com/wilfredinni/do-pack","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/wilfredinni/do-pack","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wilfredinni%2Fdo-pack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wilfredinni%2Fdo-pack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wilfredinni%2Fdo-pack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wilfredinni%2Fdo-pack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wilfredinni","download_url":"https://codeload.github.com/wilfredinni/do-pack/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wilfredinni%2Fdo-pack/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28417063,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T10:18:03.274Z","status":"ssl_error","status_checked_at":"2026-01-14T10:16:11.865Z","response_time":107,"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":["cli","command-line-tool","package-creation","packagegenerator","project-creation","project-templates","python"],"created_at":"2026-01-14T10:24:45.421Z","updated_at":"2026-01-14T10:24:46.735Z","avatar_url":"https://github.com/wilfredinni.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"do-pack\n=======\n\nA simple and quick command line tool to create python packages.\n\n.. image:: https://badge.fury.io/py/do-pack.svg\n    :target: https://badge.fury.io/py/do-pack\n\n.. image:: https://travis-ci.org/wilfredinni/do-pack.svg?branch=master\n    :target: https://travis-ci.org/wilfredinni/do-pack\n\n.. image:: https://requires.io/github/wilfredinni/do-pack/requirements.svg?branch=master\n    :target: https://requires.io/github/wilfredinni/do-pack/requirements/?branch=master  \n    \n.. image:: https://api.codacy.com/project/badge/Grade/33ea81ba45c64d1199f8b9cd94f11131\n    :target: https://www.codacy.com/app/carlos.w.montecinos/do-pack?utm_source=github.com\u0026amp;utm_medium=referral\u0026amp;utm_content=wilfredinni/do-pack\u0026amp;utm_campaign=Badge_Grade\n\n.. image:: https://bettercodehub.com/edge/badge/wilfredinni/do-pack?branch=master\n    :target: https://bettercodehub.com/\n\n.. image:: http://img.shields.io/badge/license-MIT-green.svg\n    :target: https://github.com/wilfredinni/do-pack/blob/master/LICENSE\n\nInstall\n-------\n\n``$ pip install do-pack``\n\nUsage\n-----\n\nThe config command\n~~~~~~~~~~~~~~~~~~\n\n``$ do config``\n\nUse it to fill common fields once (if executed twice it\nwill overwrite the previous configuration).\n\nCreate a default python project\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n``$ do create \u003cproject-name\u003e``\n\nCreate a project using one of the available templates\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n``$ do create \u003cproject-name\u003e -t \u003ctemplate\u003e``\n\n*-t* is the short for *--template*.\n\nAvailable templates:\n\n-  *flask*\n-  *django*\n-  *pymin* (minimal python project)\n\nTo use your own template you need to store it in a *.json* file in your current\ndirectory, e.g.:\n\n``my_template.json``\n\nAnd use it by:\n\n``$ do create my_project -t my_template``\n\nA step by step setup for new projects\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n``$ do assistant``\n\nThis command help you fill:\n\n-  ``setup.py``\n-  ``AUTHORS.rst``\n-  ``LICENSE``\n-  ``.gitignore`` with rules for *Linux*, *MacOs*,\n   *Windows*, *Python*, *Visual Studio*, *VS Code*, *Sublime Text* and\n   *Pycharm* (made with https://www.gitignore.io/).\n\nDefault Folder Structure and Templates\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nThis is the folder structure created when using\n``do create \u003cmy_project\u003e`` and ``do assistant``.\n\n::\n\n    project_folder\n    ├── project\n    │   ├── __init__.py\n    │   └── project.py\n    ├── docs\n    │   └── index.rst\n    ├── tests\n    │   ├── __init__.py\n    │   └── project_test.py\n    ├── .gitignore\n    ├── LICENSE\n    ├── README.rst\n    ├── AUTHORS.rst\n    ├── setup.py\n    ├── requirements.txt\n    └── test-requirements.txt\n\n-  The template system use a ``.json`` file in wich the keys are\n   folders and the values are files.\n-  Every time a folder is created, the program will automatically enter\n   it. If you need to exit that folder so the next one is placed in the\n   same directory, place a ``\u003c--`` in the files (values) as many times needed.\n-  Folders (keys) ``base`` and ``bin`` are replaced with the project name.\n-  ``project.py`` is replaced with the project name (e.g.\n   ``my_project.py``).\n-  In ``test_projet.py``, ``project`` is replaced with the project name\n   (e.g. ``test_my_project.py``)\n\nThis is the template for the default folder structure:\n\n::\n\n    {\n        \"base\": [\n            \"LICENSE\",\n            \"setup.py\",\n            \"README.rst\",\n            \"AUTHORS.rst\",\n            \".gitignore\",\n            \"requirements.txt\",\n            \"test-requirements.txt\",\n            \"MANIFEST.in\"\n        ],\n        \"bin\": [\n            \"project.py\",\n            \"__init__.py\",\n            \"\u003c--\"\n        ],\n        \"docs\": [\n            \"index.rst\",\n            \"\u003c--\"\n        ],\n        \"tests\": [\n            \"__init__.py\",\n            \"test_project.py\",\n            \"\u003c--\"\n        ]\n    }\n\nTODOs\n~~~~~\n\n-  Implement ``--template`` for  the ``assistant`` command (75%).\n-  Add github username to the ``config`` command for the project\n   url.\n-  Generate the documentation (sphinx).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwilfredinni%2Fdo-pack","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwilfredinni%2Fdo-pack","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwilfredinni%2Fdo-pack/lists"}