{"id":27057758,"url":"https://github.com/dumbmachine/projectpy","last_synced_at":"2025-04-05T11:33:08.723Z","repository":{"id":62578126,"uuid":"189283450","full_name":"DumbMachine/ProjectPy","owner":"DumbMachine","description":"A Simple \"create-react-app\" like CLI tool to create Python Project File Structure.","archived":false,"fork":false,"pushed_at":"2019-06-29T18:50:28.000Z","size":386,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-08-09T09:44:23.936Z","etag":null,"topics":["cli","pypi","python","simple"],"latest_commit_sha":null,"homepage":"https://dumbmachine.github.io/ProjectPy","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-2-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/DumbMachine.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}},"created_at":"2019-05-29T19:07:54.000Z","updated_at":"2019-06-29T09:45:17.000Z","dependencies_parsed_at":"2022-11-03T19:41:15.015Z","dependency_job_id":null,"html_url":"https://github.com/DumbMachine/ProjectPy","commit_stats":null,"previous_names":["dumbmachine/create-python-project"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DumbMachine%2FProjectPy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DumbMachine%2FProjectPy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DumbMachine%2FProjectPy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DumbMachine%2FProjectPy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DumbMachine","download_url":"https://codeload.github.com/DumbMachine/ProjectPy/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247331963,"owners_count":20921846,"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":["cli","pypi","python","simple"],"created_at":"2025-04-05T11:33:03.736Z","updated_at":"2025-04-05T11:33:08.712Z","avatar_url":"https://github.com/DumbMachine.png","language":"Python","readme":"![image](https://user-images.githubusercontent.com/23381512/58745622-a0c55000-8470-11e9-803d-98048a386ce9.png)\n\n\n[![HitCount](http://hits.dwyl.io/DumbMachine/projectpy.svg)](http://hits.dwyl.io/DumbMachine/projectpy)\n\n[![Downloads](https://pepy.tech/badge/projectpy)](https://pepy.tech/project/projectpy)\n[![Build status](https://ci.appveyor.com/api/projects/status/r73kob46x7rv690y?svg=true)](https://ci.appveyor.com/project/DumbMachine/create-python-project) [![Build Status](https://travis-ci.org/DumbMachine/ProjectPy.svg?branch=master)](https://travis-ci.org/DumbMachine/ProjectPy) [![Maintainability](https://api.codeclimate.com/v1/badges/3fa9da9a5e4e670d56bf/maintainability)](https://codeclimate.com/github/DumbMachine/create-python-project/maintainability) [![Known Vulnerabilities](https://snyk.io/test/github/DumbMachine/create-python-project/badge.svg?targetFile=requirements.txt)](https://snyk.io/test/github/DumbMachine/create-python-project?targetFile=requirements.txt)\n\n## Getting Started:\n\nA Simple **create-react-app** like CLI tool to create Python Package File Structure.\n\nIt offers the current features:\n\n* Super Easy to use cli.\n* One Command installation for Simple Python Packages.\n* Customizable config for awesome Python Packages.\n* Minimal worries about project structure.\n* No dependencies.\n\n## Installation\n\n### Install from PyPI:\n\n```bash\n$ pip install projectpy\n```\n\n### Install from Source:\n\n* Clone this repository and install the package:\n\n```bash\n$ git clone https://github.com/DumbMachine/ProjectPy\n$ cd projectpy\n$ python setup.py install\n```\n\n## Basic Usage\n\nCreating a simple Python Package with default settings is as simple as:\n\n```bash\n$ projectpy -n ExamplePackage\n---------------------------------------------------------------------------------------\nPROJECTPY: A Python CLI to create packages\nCreating ExamplePackage with the following config:\n\nproject_name: ExamplePackage\nproject_version: 0.01\nproject_description: \"This is the default Placeholder description\"\nauthor_name: \"Placeholder:author_name\"\ngithub_username: \"Placeholder:github_username\"\ngithub_email: \"Placeholder:github_email\"\n\nlicense: \"MIT\"\ngit: True\ncolor: True\nrequirements: True\nreadme: \"markdown\"\ncontributing.md: True\ninteractive: False\n\nshields:\n  build: \"appveyor\"\n  chat: \"discord\"\n  license: \"github\"\n  extras: \"pypi---downloads\"\n  \n🌟 Done in 3 seconds.\n✅ Success created Example_Repo in ~/Example_Repo\n\n    ______________________________\n    |                            |\n    | Generation was successful  |\n    | -------------------------  |\n    | $ cd ExamplePackage        |\n    | $ python setup.py install  |\n    ------------------------------\n    \n👋 bai bai    \n```\n\nThis will create a directory **ExampleDirectory** with the following Tree structure:\n\n```bash\n$ tree ExamplePackage/\n----------------------------------------------------------------------------------------\nExamplePackage\n├── contributing.md\n├── ExamplePackage\n    └── __init__.py\n├── LICENSE\n├── MANIFEST.ini\n├── README.md\n├── requirements.txt\n├── setup.py\n└── tests\n    └── __init__.py\n```\n\n{% hint style=\"success\" %}\nThe Package is now ready to be installed.\n{% endhint %}\n\n**To Install the package:**\n\n```bash\n$ cd ExamplePackage\n$ python setup.py install\n\n# To check the installation, try importing the installed package.\n$ python\nPython 3.7.3 (default, Mar 27 2019, 22:11:17) \n[GCC 7.3.0] :: Anaconda, Inc. on linux\nType \"help\", \"copyright\", \"credits\" or \"license\" for more information.\n\u003e\u003e\u003e import ExamplePackage\n🎉 Successfull Installation\n```\n\n# 🗒 TODO:\n\n- [ ] Add support for Logging.\n- [ ] Improve the CLI ( Add more colors ).\n- [ ] Make examples for showing the thing.\n- [ ] Add support for Jenkins.\n- [ ] Check for COnda INstall Support.\n- [ ] Add Support for Black/isort.\n- [ ] Add support for Submodules.\n- [ ] Format years and shizz in the LICENSES.\n- [ ] Write up a function to generate Config template.\n- [ ] Add option for presets.\n  - [ ] Data Science/ Kaggle\n  - [ ] Web\n    - [ ] Flask\n    - [ ] Django\n    - [ ]\n- [ ] Add support to ignore .files and temp_*.py files for shizeles.\n\n\n\n[![HitCount](http://hits.dwyl.io/DumbMachine/projectpy.svg)](http://hits.dwyl.io/DumbMachine/projectpy) [![Downloads](https://pepy.tech/badge/projectpy)](https://pepy.tech/project/projectpy)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdumbmachine%2Fprojectpy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdumbmachine%2Fprojectpy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdumbmachine%2Fprojectpy/lists"}