{"id":31642448,"url":"https://github.com/tameronline/reposmith","last_synced_at":"2025-10-07T03:59:34.979Z","repository":{"id":312995910,"uuid":"1049591204","full_name":"TamerOnLine/RepoSmith","owner":"TamerOnLine","description":null,"archived":false,"fork":false,"pushed_at":"2025-09-03T08:24:07.000Z","size":10,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-03T10:12:26.025Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TamerOnLine.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"license_utils.py","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":"2025-09-03T07:53:08.000Z","updated_at":"2025-09-03T08:24:11.000Z","dependencies_parsed_at":"2025-09-03T10:12:32.302Z","dependency_job_id":"e0eaa7cc-b57c-4770-8c42-d137634419f3","html_url":"https://github.com/TamerOnLine/RepoSmith","commit_stats":null,"previous_names":["tameronline/reposmith"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/TamerOnLine/RepoSmith","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TamerOnLine%2FRepoSmith","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TamerOnLine%2FRepoSmith/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TamerOnLine%2FRepoSmith/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TamerOnLine%2FRepoSmith/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TamerOnLine","download_url":"https://codeload.github.com/TamerOnLine/RepoSmith/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TamerOnLine%2FRepoSmith/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278717436,"owners_count":26033542,"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","status":"online","status_checked_at":"2025-10-07T02:00:06.786Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2025-10-07T03:59:29.041Z","updated_at":"2025-10-07T03:59:34.973Z","avatar_url":"https://github.com/TamerOnLine.png","language":"Python","funding_links":["https://github.com/sponsors/liebemama"],"categories":[],"sub_categories":[],"readme":"# ⚡ RepoSmith \n\n[![PyPI version](https://img.shields.io/pypi/v/reposmith-tol?style=flat-square)](https://pypi.org/project/reposmith-tol/)\n![Python](https://img.shields.io/pypi/pyversions/reposmith-tol?style=flat-square)\n![License](https://img.shields.io/github/license/liebemama/RepoSmith?style=flat-square)\n[![CI](https://github.com/liebemama/RepoSmith/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/liebemama/RepoSmith/actions/workflows/ci.yml)\n[![Sponsor](https://img.shields.io/badge/Sponsor-💖-pink?style=flat-square)](https://github.com/sponsors/liebemama)\n\n\n\n**RepoSmith** is a **portable Python project bootstrapper** — a zero-dependency CLI \u0026 library that helps you spin up new projects instantly.  \nWith one command, you get a ready-to-code environment: virtualenv, config files, VS Code setup, `.gitignore`, LICENSE, and optional CI.\n\n---\n\n## ✨ Features\n- 🚀 **Zero dependencies** — built only with Python stdlib\n- ⚙️ **Virtual environment** auto-created (`.venv`)\n- 📦 **requirements.txt** scaffolded (empty but ready)\n- 📝 **Entry file** (`main.py` or `run.py`) with a welcome message\n- 🛡 **LICENSE** (MIT by default, more soon)\n- 🙈 **.gitignore** presets (Python, Node, Django…)\n- 💻 **VS Code config** (`settings.json`, `launch.json`, workspace)\n- 🔄 **GitHub Actions** workflow (`.github/workflows/ci.yml`)\n- 🔧 Idempotent: runs safely again without overwriting unless `--force`\n\n---\n\n## ⚡ Quick Start\n\n### Option 1 — run via Python module (always works)\n```powershell\ncd MyProject\npy -m reposmith.main init --entry run.py --with-vscode --with-ci\n```\n\n### Option 2 — run via CLI (if Scripts folder is on PATH)\n```powershell\nreposmith init --entry run.py --with-vscode --with-ci\n```\n\nBoth commands will:\n- create `.venv/`\n- add `requirements.txt`, `run.py`, `.gitignore`, `LICENSE`, `.vscode/`\n- configure everything automatically with defaults\n\n---\n\n## 🚀 Usage\n\nBasic:\n```powershell\nreposmith init --entry main.py\n```\n\nWith extras:\n```powershell\nreposmith init --entry run.py --with-ci --with-gitignore --with-license --with-vscode --author \"YourName\"\n```\n\nFlags:\n- `--force` → overwrite existing files (with `.bak` backup)\n- `--no-venv` → skip creating `.venv`\n- `--with-license` → add LICENSE (MIT)\n- `--with-gitignore` → add .gitignore (Python preset by default)\n- `--with-vscode` → add VS Code config\n- `--with-ci` → add GitHub Actions workflow\n- `--author` / `--year` → customize LICENSE metadata\n- `--ci-python` → set Python version for CI (default: 3.12)\n\n---\n\n## 📦 Installation\n```powershell\npy -m pip install --upgrade reposmith-tol\n```\n\nIf PATH not configured, use:\n```powershell\npy -m reposmith.main init --entry run.py\n```\n\n---\n\n## 🧪 Development\nRun tests:\n```powershell\npython -m unittest discover -s tests -v\n```\n\n---\n\n## 🗺️ Roadmap\n\n\n\n🔗 [Follow the project progress on GitHub Projects](https://github.com/orgs/liebemama/projects/2)\n\n\n---\n\n\n## 🛡 License\nThis project is licensed under the [MIT License](https://github.com/liebemama/RepoSmith/blob/main/LICENSE).  \n© 2025 TamerOnLine\n\n---\n\n## 💬 Support\n\n- 🐛 **Report Issues:** [GitHub Issues](https://github.com/liebemama/RepoSmith/issues)  \n- 💡 **Feature Requests:** [GitHub Issues](https://github.com/liebemama/RepoSmith/issues) (اختر نوع *Feature Request*)  \n- 💖 **Sponsor:** [GitHub Sponsors](https://github.com/sponsors/liebemama)  \n- 📧 **Contact:** (info@tameronline.com)\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftameronline%2Freposmith","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftameronline%2Freposmith","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftameronline%2Freposmith/lists"}