{"id":28957007,"url":"https://github.com/developmentseed/python-seed","last_synced_at":"2025-06-23T21:41:22.361Z","repository":{"id":30067329,"uuid":"109182493","full_name":"developmentseed/python-seed","owner":"developmentseed","description":"Project template for Python projects","archived":false,"fork":false,"pushed_at":"2022-05-22T10:02:23.000Z","size":81,"stargazers_count":21,"open_issues_count":4,"forks_count":7,"subscribers_count":42,"default_branch":"master","last_synced_at":"2024-04-10T03:11:38.895Z","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":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/developmentseed.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGES.txt","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":"2017-11-01T20:49:23.000Z","updated_at":"2023-02-22T11:58:16.000Z","dependencies_parsed_at":"2022-07-28T00:47:19.565Z","dependency_job_id":null,"html_url":"https://github.com/developmentseed/python-seed","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/developmentseed/python-seed","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/developmentseed%2Fpython-seed","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/developmentseed%2Fpython-seed/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/developmentseed%2Fpython-seed/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/developmentseed%2Fpython-seed/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/developmentseed","download_url":"https://codeload.github.com/developmentseed/python-seed/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/developmentseed%2Fpython-seed/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261561300,"owners_count":23177572,"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":[],"created_at":"2025-06-23T21:41:21.308Z","updated_at":"2025-06-23T21:41:22.343Z","avatar_url":"https://github.com/developmentseed.png","language":"Python","readme":"# python-seed\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://user-images.githubusercontent.com/10407788/90814089-905bf800-e2f6-11ea-8bd7-2639fa1177af.png\" style=\"max-width: 800px;\" alt=\"python-seed\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\u003cp align=\"center\"\u003e\n  \u003cem\u003eStarter kit for creating a new python package.\u003c/em\u003e\n\u003c/p\u003e\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/developmentseed/python-seed/actions?query=workflow%3ACI\" target=\"_blank\"\u003e\n      \u003cimg src=\"https://github.com/developmentseed/python-seed/workflows/CI/badge.svg\" alt=\"Test\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://codecov.io/gh/developmentseed/python-seed\" target=\"_blank\"\u003e\n      \u003cimg src=\"https://codecov.io/gh/developmentseed/python-seed/branch/master/graph/badge.svg\" alt=\"Coverage\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://pypi.org/project/python-seed\" target=\"_blank\"\u003e\n      \u003cimg src=\"https://img.shields.io/pypi/v/python-seed?color=%2334D058\u0026label=pypi%20package\" alt=\"Package version\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/developmentseed/python-seed/blob/master/LICENSE\" target=\"_blank\"\u003e\n      \u003cimg src=\"https://img.shields.io/github/license/developmentseed/python-seed.svg\" alt=\"Downloads\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\nThis is a starter repo for creating a new python package. Included are templates for standard files as well as best practices.\n\n## Install\n\nYou can install python-seed using pip\n\n```bash\n$ pip install -U pip\n$ pip install python-seed\n```\n\nor install from source:\n\n```bash\n$ git clone https://github.com/developmentseed/python-seed.git\n$ cd python-seed\n$ pip install -U pip\n$ pip install -e .\n```\n\n## Usage\n\n```bash\n$ pyseed --help\nUsage: pyseed [OPTIONS] COMMAND [ARGS]...\n\n  python-seed subcommands.\n\nOptions:\n  --version  Show the version and exit.\n  --help     Show this message and exit.\n\nCommands:\n  create  Create new python seed skeleton\n```\n\n```\n$ pyseed create --help\nUsage: pyseed create [OPTIONS] NAME\n\n  Create new python seed skeleton.\n\nOptions:\n  --ci [circleci|github]  Add CI configuration\n  --help                  Show this message and exit.\n```\n\nCreate a new python project\n\n```bash\n# Create a project without CI\n$ pyseed create awesomepythonproject\n\n# List files created\n$ ls -1 awesomepythonproject\n.pre-commit-config.yaml\nREADME.md\nawesomepythonproject/\nrequirements-dev.txt\nrequirements.txt\nsetup.py\ntests/\ntox.ini\n```\n\nWith CI framework\n\n```bash\n# Create a project github actions\n$ pyseed create awesomepythonproject --ci github\n\n# List files created\n$ ls -1 awesomepythonproject\n.github/workflows/ci.yml\ncodecov.yml\n.pre-commit-config.yaml\nREADME.md\nawesomepythonproject/\nrequirements-dev.txt\nrequirements.txt\nsetup.py\ntests/\ntox.ini\n```\n\n# Project structure\n\n```\nmy-project/\n ├── .circleci/ or .github/      - CI configuration.\n ├── codecov.yml                 - codecov configuration (only if CI is added).\n ├── .pre-commit-config.yaml     - pre-commit configuration.\n ├── README.md                   - project readme.\n ├── my_project/                 - core python module.\n ├── tests/                      - tests suite placeholder for your module.\n ├── requirements.txt            - python requirements (!!! by default requirements are written in setup.py)\n ├── requirements-dev.txt        - python dev requirements (!!! by default requirements are written in setup.py)\n └──tox.ini                      - TOX configuration.\n```\n\n\n## Contribution \u0026 Development\n\nIssues and pull requests are more than welcome.\n\n**dev install**\n\n```bash\n$ git clone https://github.com/developmentseed/python-seed.git\n$ cd python-seed\n$ pip install -e .[dev]\n```\n\n**Python3.7 only**\n\nThis repo is set to use `pre-commit` to run *isort*, *flake8*, *pydocstring*, *black* (\"uncompromising Python code formatter\") and mypy when committing new code.\n\n```bash\n$ pre-commit install\n```\n\n## About\npython-seed was created by [Development Seed](\u003chttp://developmentseed.org\u003e)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevelopmentseed%2Fpython-seed","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevelopmentseed%2Fpython-seed","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevelopmentseed%2Fpython-seed/lists"}