{"id":15653428,"url":"https://github.com/idlesign/makeapp","last_synced_at":"2025-04-30T17:13:16.095Z","repository":{"id":12561583,"uuid":"15231964","full_name":"idlesign/makeapp","owner":"idlesign","description":"Simplifies Python application rollout and publishing.","archived":false,"fork":false,"pushed_at":"2025-02-23T05:30:26.000Z","size":421,"stargazers_count":29,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-04-30T17:13:02.817Z","etag":null,"topics":["bootstrapper","packaging","python","scaffold"],"latest_commit_sha":null,"homepage":"https://github.com/idlesign/makeapp","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/idlesign.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGELOG","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":"AUTHORS","dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2013-12-16T17:13:32.000Z","updated_at":"2025-02-23T05:30:29.000Z","dependencies_parsed_at":"2025-04-20T10:30:45.519Z","dependency_job_id":null,"html_url":"https://github.com/idlesign/makeapp","commit_stats":{"total_commits":347,"total_committers":1,"mean_commits":347.0,"dds":0.0,"last_synced_commit":"b3637084b31839539f6d54b685524b61abb5100c"},"previous_names":[],"tags_count":40,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idlesign%2Fmakeapp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idlesign%2Fmakeapp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idlesign%2Fmakeapp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idlesign%2Fmakeapp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/idlesign","download_url":"https://codeload.github.com/idlesign/makeapp/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251748956,"owners_count":21637418,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["bootstrapper","packaging","python","scaffold"],"created_at":"2024-10-03T12:45:39.757Z","updated_at":"2025-04-30T17:13:16.074Z","avatar_url":"https://github.com/idlesign.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"makeapp\n=======\nhttps://github.com/idlesign/makeapp\n\n|release| |lic| |coverage|\n\n.. |release| image:: https://img.shields.io/pypi/v/makeapp.svg\n    :target: https://pypi.python.org/pypi/makeapp\n\n.. |lic| image:: https://img.shields.io/pypi/l/makeapp.svg\n    :target: https://pypi.python.org/pypi/makeapp\n\n.. |coverage| image:: https://img.shields.io/coveralls/idlesign/makeapp/master.svg\n    :target: https://coveralls.io/r/idlesign/makeapp\n\n\nDescription\n------------\n\n*Simplifies Python application rollout and publishing.*\n\n* Make a skeleton for your new application with one console command.\n* Automatically create a VCS repository for your application.\n* Automatically check whether the chosen application name is not already in use.\n* Customize new application layouts with skeleton templates.\n* Put some skeleton default settings into a configuration file not to mess with command line switches anymore.\n* Easily add entries to your changelog.\n* Publish your application to remotes (VCS, PyPI) with single command.\n\n\nApplication scaffolding\n-----------------------\n\nScaffold a new application:\n\n.. code-block:: bash\n\n    $ makeapp new my_new_app /home/librarian/mynewapp/ -d \"My application.\" --author \"The Librarian\"\n\n\nThis will create a decent application skeleton using the default skeleton template (``setup.py``, docs, tests, etc.)\nand initialize Git repository.\n\n``makeapp`` also bundles templates for commonly used application types:\n\n* ``click`` powered app\n* ``pytest`` powered app\n* ``pytest`` plugin\n* ``Django`` app\n* ``webscaff`` project (https://github.com/idlesign/webscaff)\n* etc.\n\nMultiple templates can be used together. Complete list of featured templates can be found in the documentation.\nUser-made templates are also supported.\n\n\nApplication publishing\n----------------------\n\nWhen you're ready to publish issue the following command while in project directory (containing ``setup.py``):\n\n.. code-block:: bash\n\n    $ makeapp release\n    ; Bump version number part manually: major, minor, patch\n    $ makeapp release --increment major\n\n\nThis will automatically:\n\n* bump up application version number\n* tag version in VCS\n* push sources to remote repository\n* upload application package to PyPI\n\n\nAdding changes\n--------------\n\nWhen you're ready to add another entry to your changelog use ``change`` command:\n\n.. code-block:: bash\n\n    $ makeapp change \"+ New 'change' command implemented\"\n\nThis will also stage and commit all changed files.\n\nSupported message prefixes:\n\n* ``+`` - New feature / addition.\n\n  Increments *minor* part of version number on ``release`` command.\n\n* ``!`` - Important change/improvement/fix.\n\n  Increment: *patch* part.\n\n* ``-`` - Feature deprecation / removal\n\n  Increment: *patch*.\n\n* ``*`` - Minor change/improvement/fix. ``*`` prefix is added by default if none of the above mentioned prefixes found.\n\n  Increment: *patch*.\n\n\nBash completion\n---------------\n\nTo enable bash completion for ``makeapp`` command append the following line into your ``.bashrc``:\n\n.. code-block:: bash\n\n    eval \"$(_MAKEAPP_COMPLETE=source makeapp)\"\n\n\nDocumentation\n-------------\n\nhttps://makeapp.readthedocs.org/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fidlesign%2Fmakeapp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fidlesign%2Fmakeapp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fidlesign%2Fmakeapp/lists"}