{"id":20301252,"url":"https://github.com/aniketmaurya/python-project-template","last_synced_at":"2025-06-16T21:38:01.692Z","repository":{"id":42176641,"uuid":"403050705","full_name":"aniketmaurya/python-project-template","owner":"aniketmaurya","description":"A template to kick-start your Python project ✨🚀","archived":false,"fork":false,"pushed_at":"2024-12-27T23:21:56.000Z","size":630,"stargazers_count":51,"open_issues_count":0,"forks_count":8,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-25T09:49:23.292Z","etag":null,"topics":["litserve","packaging-python","pip","python","python3","ruff"],"latest_commit_sha":null,"homepage":"https://aniketmaurya.github.io/python-project-template/","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/aniketmaurya.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2021-09-04T12:28:23.000Z","updated_at":"2025-01-20T16:55:38.000Z","dependencies_parsed_at":"2024-05-07T00:25:51.361Z","dependency_job_id":"6add523e-5b1c-479b-84ae-f29504865e74","html_url":"https://github.com/aniketmaurya/python-project-template","commit_stats":null,"previous_names":[],"tags_count":1,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aniketmaurya%2Fpython-project-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aniketmaurya%2Fpython-project-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aniketmaurya%2Fpython-project-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aniketmaurya%2Fpython-project-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aniketmaurya","download_url":"https://codeload.github.com/aniketmaurya/python-project-template/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248409983,"owners_count":21098771,"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":["litserve","packaging-python","pip","python","python3","ruff"],"created_at":"2024-11-14T16:24:56.543Z","updated_at":"2025-04-11T13:35:03.377Z","avatar_url":"https://github.com/aniketmaurya.png","language":"Python","readme":"\u003cdiv align=\"center\"\u003e\n  \u003ch1\u003ePython Project Template 🐍\u003c/h1\u003e\n  \u003c!-- A brief description of what this project does and who it's for --\u003e\n  \u003cp\u003eA template to kick-start your open-source Python project.\u003c/p\u003e\n\u003c/div\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/aniketmaurya/python-project-template/actions/workflows/main.yml\"\u003e\n    \u003cimg src=\"https://github.com/aniketmaurya/python-project-template/actions/workflows/main.yml/badge.svg\" alt=\"Tests\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://codecov.io/gh/aniketmaurya/python-project-template\"\u003e\n    \u003cimg src=\"https://codecov.io/gh/aniketmaurya/python-project-template/branch/main/graph/badge.svg\" alt=\"codecov\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/psf/black\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/code%20style-black-000000.svg\" alt=\"black\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/aniketmaurya/python-project-template/blob/main/LICENSE\"\u003e\n    \u003cimg src=\"https://img.shields.io/github/license/aniketmaurya/python-project-template.svg\" alt=\"license\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/codespaces/badge.svg)](https://codespaces.new/aniketmaurya/python-project-template?template=false\"\u003e\n    \u003cimg src=\"https://github.com/codespaces/badge.svg\" alt=\"Open in GitHub Codespaces\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n# Features\n\n- 🚀 Modern Python project structure\n- 📦 Pre-configured [pyproject.toml](pyproject.toml)\n- 🤖 ML server template with [LitServe](https://github.com/Lightning-AI/LitServe)\n- 🧪 Testing setup with [pytest](https://docs.pytest.org/en/latest/)\n- 👷 CI/CD with [GitHub Actions](https://github.com/aniketmaurya/python-project-template/blob/main/.github/workflows)\n- 📝 Auto-generated documentation\n- 🎯 Type hints and static type checking\n- 🔍 Code formatting with ruff and isort\n- 🐛 Linting with ruff\n\n# Project Structure\n\n```\npython-project-template/\n├── .github/\n│   └── workflows/          # GitHub Actions workflows\n├── docs/                   # Documentation\n├── src/                    # Source code\n│   └── python_project_template/\n├── tests/                  # Test files\n├── .gitignore\n├── LICENSE\n├── README.md\n├── pyproject.toml         # Project metadata and dependencies\n└── setup.py              # Package installation\n```\n\n# Installation\n\n## From Source\n\n```bash\ngit clone https://github.com/aniketmaurya/python-project-template.git\ncd python-project-template\npip install .\n```\n\n## Development Installation\n\n```bash\ngit clone https://github.com/aniketmaurya/python-project-template.git\ncd python-project-template\npip install -e \".[dev]\"\n```\n\n## Usage\n\n```python\nfrom python_project_template import do_something_awesome\n\nprint(do_something_awesome())\n```\n\n# Development\n\n1. Clone the repository\n\n```bash\ngit clone https://github.com/aniketmaurya/python-project-template.git\ncd python-project-template\n```\n\n2. Create a virtual environment\n\n```bash\npython -m venv venv\nsource venv/bin/activate  # On Windows, use `venv\\Scripts\\activate`\n```\n\n3. Install development dependencies\n\n```bash\npip install -e \".[dev]\"\n```\n\n## Running Tests\n\n```bash\npytest tests/\n```\n\n# Contributing\n\nContributions are always welcome! Here's how you can help:\n\n1. Fork the repository\n2. Create a new branch (`git checkout -b feature/amazing-feature`)\n3. Make your changes\n4. Commit your changes (`git commit -m 'Add some amazing feature'`)\n5. Push to the branch (`git push origin feature/amazing-feature`)\n6. Open a Pull Request\n\nPlease make sure to update tests as appropriate and follow the existing coding style.\n\n# License\n\n[MIT](https://choosealicense.com/licenses/mit/) - Feel free to use this template for your projects!\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faniketmaurya%2Fpython-project-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faniketmaurya%2Fpython-project-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faniketmaurya%2Fpython-project-template/lists"}