├── .all-contributorsrc ├── .circleci └── config.yml ├── .github ├── dependabot.yml └── workflows │ ├── artifact_redirect.yml │ ├── build-book.yml │ ├── crowdin_sync.yml │ └── main.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .vale.ini ├── .zenodo.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── TRANSLATING.md ├── _ext ├── __init__.py ├── rss.py └── translation_graph.py ├── _static ├── fonts │ ├── NunitoSans-Italic-VariableFont.woff2 │ ├── NunitoSans-VariableFont.woff2 │ ├── itim-v14-latin-regular.woff2 │ ├── poppins-v20-latin-500.woff2 │ ├── poppins-v20-latin-600.woff2 │ ├── poppins-v20-latin-700.woff2 │ ├── poppins-v20-latin-700italic.woff2 │ ├── poppins-v20-latin-italic.woff2 │ └── poppins-v20-latin-regular.woff2 ├── language_select.js ├── logo-dark-mode.png ├── logo-light-mode.png ├── matomo.js ├── pyopensci-logo-package-guide.png ├── pyopensci-python-package-guide.png └── pyos.css ├── _templates ├── code_of_conduct.html └── language-selector.html ├── bibliography.bib ├── codespell-ignore.txt ├── conf.py ├── crowdin.yml ├── documentation ├── hosting-tools │ ├── intro.md │ ├── myst-markdown-rst-doc-syntax.md │ ├── publish-documentation-online.md │ ├── sphinx-python-package-documentation-tools.md │ └── website-hosting-optimizing-your-docs.md ├── index.md ├── repository-files │ ├── changelog-file.md │ ├── code-of-conduct-file.md │ ├── contributing-file.md │ ├── development-guide.md │ ├── intro.md │ ├── license-files.md │ └── readme-file-best-practices.md └── write-user-documentation │ ├── create-package-tutorials.md │ ├── document-your-code-api-docstrings.md │ ├── get-started.md │ └── intro.md ├── examples ├── extension-hatch │ ├── README │ ├── examplePy │ │ ├── __init__.py │ │ ├── meson.build │ │ └── temperature.c │ ├── meson.build │ └── pyproject.toml ├── pure-hatch │ ├── .github │ │ └── workflows │ │ │ └── release.yml │ ├── .pre-commit-config.yaml │ ├── pyproject.toml │ ├── src │ │ └── examplePy │ │ │ ├── __init__.py │ │ │ ├── temperature.py │ │ │ ├── temporal-raw.py │ │ │ └── temporal.py │ └── tests │ │ └── examplePy │ │ ├── data │ │ └── temperatures_testdata.csv │ │ ├── test_temperature.py │ │ └── test_temporal.py └── pure-setuptools │ └── pyproject.toml ├── images ├── code-cov-stravalib.png ├── conda-channels-geohackweek.jpeg ├── conda-forge-staged-recipes-ci.png ├── contributing │ ├── clone-repository.png │ ├── commit-changes.png │ ├── edit-button-pencil.png │ ├── edit-file.png │ ├── new-pull-request.png │ ├── preview-changes.png │ ├── pull-requests-checks-fails.png │ ├── pull-requests-checks.png │ └── pull-requests-tab.png ├── flower-puzzle-pyopensci.jpg ├── geopandas-documentation-landing-page.png ├── license-github-root-dir.png ├── moving-pandas-python-package-github-community-standards.png ├── moving-pandas-python-package-github-main-repo.png ├── moving-pandas-python-package-snyk-health.png ├── packaging-lifecycle.png ├── pandera-python-package-readme-github.png ├── precommit-hook-python-code.png ├── publish-python-package-pypi-conda.png ├── pyopensci-puzzle-pieces-tests.png ├── pyopensci-python-package-pypi-to-conda-forge.png ├── pypi-project-landing-page-no-meta.png ├── python-build-package │ ├── pypi-metadata-classifiers.png │ ├── pypi-metadata-keywords-license.png │ └── pypi-metadata-maintainers.png ├── python-dependency-conflicts-xkcd.png ├── python-flying-xkcd.png ├── python-package-dependencies.png ├── python-package-dependency-types.png ├── python-package-development-process.png ├── python-package-documentation-nb_sphinx-gallery-output.png ├── python-package-tools-2022-survey-pypa.png ├── python-package-tools-decision-tree.png ├── python-pypi-conda-channels.png ├── python-tests-puzzle-fit.png ├── python-tests-puzzle.png ├── sphinx-gallery-overview.png ├── sphinx-gallery-tutorial.png ├── sphinx-rendering-extent-to-json-earthpy.png ├── trusted-publisher-pypi-github.png ├── trusted-publisher-pypi-github.webp └── tutorials │ ├── code-to-python-package.png │ ├── environment-package-install.png │ ├── github-actions-release-workflows-artifacts.png │ ├── github-actions-release-workflows-run.png │ ├── github-actions-release-workflows-summary.png │ ├── github-new-repo.png │ ├── package-components.png │ ├── packaging-101-outline.png │ ├── packaging-elements.png │ ├── packaging-lifecycle.png │ ├── publish-package-pypi-conda.png │ ├── test-pypi-package.png │ ├── testpypi-search.png │ ├── toolbox.png │ ├── trusted-publishing-publishing.png │ ├── trusted-publishing-your-projects.png │ └── view-license-github.png ├── index.md ├── locales ├── es │ └── LC_MESSAGES │ │ ├── CONTRIBUTING.po │ │ ├── TRANSLATING.po │ │ ├── continuous-integration.po │ │ ├── documentation.po │ │ ├── index.po │ │ ├── package-structure-code.po │ │ ├── tests.po │ │ └── tutorials.po └── ja │ └── LC_MESSAGES │ ├── CONTRIBUTING.po │ ├── TRANSLATING.po │ ├── continuous-integration.po │ ├── documentation.po │ ├── index.po │ ├── package-structure-code.po │ ├── tests.po │ └── tutorials.po ├── maintain-automate ├── ci.md ├── environment-managers.md ├── index.md └── task-runners.md ├── noxfile.py ├── package-structure-code ├── code-style-linting-format.md ├── complex-python-package-builds.md ├── declare-dependencies.md ├── intro.md ├── publish-python-package-pypi-conda.md ├── pyproject-toml-python-package-metadata.md ├── python-package-build-tools.md ├── python-package-distribution-files-sdist-wheel.md ├── python-package-structure.md └── python-package-versions.md ├── pyproject.toml ├── tests ├── code-cov.md ├── index.md ├── run-tests.md ├── test-types.md ├── tests-ci.md └── write-tests.md ├── tutorials ├── add-license-coc.md ├── add-readme.md ├── command-line-reference.md ├── create-python-package.md ├── develop-python-package-hatch.md ├── get-to-know-hatch.md ├── intro.md ├── publish-conda-forge.md ├── publish-pypi.md ├── pyproject-toml.md ├── setup-py-to-pyproject-toml.md └── trusted-publishing.md └── vale-styles ├── config └── vocabularies │ └── sample │ ├── accept.txt │ └── reject.txt ├── package-guide-test └── PyPI.yml └── write-good ├── Cliches.yml ├── E-Prime.yml ├── Illusions.yml ├── Passive.yml ├── README.md ├── So.yml ├── ThereIs.yml ├── TooWordy.yml ├── Weasel.yml └── meta.json /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/artifact_redirect.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/.github/workflows/artifact_redirect.yml -------------------------------------------------------------------------------- /.github/workflows/build-book.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/.github/workflows/build-book.yml -------------------------------------------------------------------------------- /.github/workflows/crowdin_sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/.github/workflows/crowdin_sync.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/.vale.ini -------------------------------------------------------------------------------- /.zenodo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/.zenodo.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/README.md -------------------------------------------------------------------------------- /TRANSLATING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/TRANSLATING.md -------------------------------------------------------------------------------- /_ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_ext/rss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/_ext/rss.py -------------------------------------------------------------------------------- /_ext/translation_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/_ext/translation_graph.py -------------------------------------------------------------------------------- /_static/fonts/NunitoSans-Italic-VariableFont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/_static/fonts/NunitoSans-Italic-VariableFont.woff2 -------------------------------------------------------------------------------- /_static/fonts/NunitoSans-VariableFont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/_static/fonts/NunitoSans-VariableFont.woff2 -------------------------------------------------------------------------------- /_static/fonts/itim-v14-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/_static/fonts/itim-v14-latin-regular.woff2 -------------------------------------------------------------------------------- /_static/fonts/poppins-v20-latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/_static/fonts/poppins-v20-latin-500.woff2 -------------------------------------------------------------------------------- /_static/fonts/poppins-v20-latin-600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/_static/fonts/poppins-v20-latin-600.woff2 -------------------------------------------------------------------------------- /_static/fonts/poppins-v20-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/_static/fonts/poppins-v20-latin-700.woff2 -------------------------------------------------------------------------------- /_static/fonts/poppins-v20-latin-700italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/_static/fonts/poppins-v20-latin-700italic.woff2 -------------------------------------------------------------------------------- /_static/fonts/poppins-v20-latin-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/_static/fonts/poppins-v20-latin-italic.woff2 -------------------------------------------------------------------------------- /_static/fonts/poppins-v20-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/_static/fonts/poppins-v20-latin-regular.woff2 -------------------------------------------------------------------------------- /_static/language_select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/_static/language_select.js -------------------------------------------------------------------------------- /_static/logo-dark-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/_static/logo-dark-mode.png -------------------------------------------------------------------------------- /_static/logo-light-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/_static/logo-light-mode.png -------------------------------------------------------------------------------- /_static/matomo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/_static/matomo.js -------------------------------------------------------------------------------- /_static/pyopensci-logo-package-guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/_static/pyopensci-logo-package-guide.png -------------------------------------------------------------------------------- /_static/pyopensci-python-package-guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/_static/pyopensci-python-package-guide.png -------------------------------------------------------------------------------- /_static/pyos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/_static/pyos.css -------------------------------------------------------------------------------- /_templates/code_of_conduct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/_templates/code_of_conduct.html -------------------------------------------------------------------------------- /_templates/language-selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/_templates/language-selector.html -------------------------------------------------------------------------------- /bibliography.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/bibliography.bib -------------------------------------------------------------------------------- /codespell-ignore.txt: -------------------------------------------------------------------------------- 1 | aways 2 | Soler 3 | -------------------------------------------------------------------------------- /conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/conf.py -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/crowdin.yml -------------------------------------------------------------------------------- /documentation/hosting-tools/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/documentation/hosting-tools/intro.md -------------------------------------------------------------------------------- /documentation/hosting-tools/myst-markdown-rst-doc-syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/documentation/hosting-tools/myst-markdown-rst-doc-syntax.md -------------------------------------------------------------------------------- /documentation/hosting-tools/publish-documentation-online.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/documentation/hosting-tools/publish-documentation-online.md -------------------------------------------------------------------------------- /documentation/hosting-tools/sphinx-python-package-documentation-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/documentation/hosting-tools/sphinx-python-package-documentation-tools.md -------------------------------------------------------------------------------- /documentation/hosting-tools/website-hosting-optimizing-your-docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/documentation/hosting-tools/website-hosting-optimizing-your-docs.md -------------------------------------------------------------------------------- /documentation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/documentation/index.md -------------------------------------------------------------------------------- /documentation/repository-files/changelog-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/documentation/repository-files/changelog-file.md -------------------------------------------------------------------------------- /documentation/repository-files/code-of-conduct-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/documentation/repository-files/code-of-conduct-file.md -------------------------------------------------------------------------------- /documentation/repository-files/contributing-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/documentation/repository-files/contributing-file.md -------------------------------------------------------------------------------- /documentation/repository-files/development-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/documentation/repository-files/development-guide.md -------------------------------------------------------------------------------- /documentation/repository-files/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/documentation/repository-files/intro.md -------------------------------------------------------------------------------- /documentation/repository-files/license-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/documentation/repository-files/license-files.md -------------------------------------------------------------------------------- /documentation/repository-files/readme-file-best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/documentation/repository-files/readme-file-best-practices.md -------------------------------------------------------------------------------- /documentation/write-user-documentation/create-package-tutorials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/documentation/write-user-documentation/create-package-tutorials.md -------------------------------------------------------------------------------- /documentation/write-user-documentation/document-your-code-api-docstrings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/documentation/write-user-documentation/document-your-code-api-docstrings.md -------------------------------------------------------------------------------- /documentation/write-user-documentation/get-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/documentation/write-user-documentation/get-started.md -------------------------------------------------------------------------------- /documentation/write-user-documentation/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/documentation/write-user-documentation/intro.md -------------------------------------------------------------------------------- /examples/extension-hatch/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/examples/extension-hatch/README -------------------------------------------------------------------------------- /examples/extension-hatch/examplePy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/examples/extension-hatch/examplePy/__init__.py -------------------------------------------------------------------------------- /examples/extension-hatch/examplePy/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/examples/extension-hatch/examplePy/meson.build -------------------------------------------------------------------------------- /examples/extension-hatch/examplePy/temperature.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/examples/extension-hatch/examplePy/temperature.c -------------------------------------------------------------------------------- /examples/extension-hatch/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/examples/extension-hatch/meson.build -------------------------------------------------------------------------------- /examples/extension-hatch/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/examples/extension-hatch/pyproject.toml -------------------------------------------------------------------------------- /examples/pure-hatch/.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/examples/pure-hatch/.github/workflows/release.yml -------------------------------------------------------------------------------- /examples/pure-hatch/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/examples/pure-hatch/.pre-commit-config.yaml -------------------------------------------------------------------------------- /examples/pure-hatch/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/examples/pure-hatch/pyproject.toml -------------------------------------------------------------------------------- /examples/pure-hatch/src/examplePy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/pure-hatch/src/examplePy/temperature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/examples/pure-hatch/src/examplePy/temperature.py -------------------------------------------------------------------------------- /examples/pure-hatch/src/examplePy/temporal-raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/examples/pure-hatch/src/examplePy/temporal-raw.py -------------------------------------------------------------------------------- /examples/pure-hatch/src/examplePy/temporal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/examples/pure-hatch/src/examplePy/temporal.py -------------------------------------------------------------------------------- /examples/pure-hatch/tests/examplePy/data/temperatures_testdata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/examples/pure-hatch/tests/examplePy/data/temperatures_testdata.csv -------------------------------------------------------------------------------- /examples/pure-hatch/tests/examplePy/test_temperature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/examples/pure-hatch/tests/examplePy/test_temperature.py -------------------------------------------------------------------------------- /examples/pure-hatch/tests/examplePy/test_temporal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/examples/pure-hatch/tests/examplePy/test_temporal.py -------------------------------------------------------------------------------- /examples/pure-setuptools/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/examples/pure-setuptools/pyproject.toml -------------------------------------------------------------------------------- /images/code-cov-stravalib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/code-cov-stravalib.png -------------------------------------------------------------------------------- /images/conda-channels-geohackweek.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/conda-channels-geohackweek.jpeg -------------------------------------------------------------------------------- /images/conda-forge-staged-recipes-ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/conda-forge-staged-recipes-ci.png -------------------------------------------------------------------------------- /images/contributing/clone-repository.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/contributing/clone-repository.png -------------------------------------------------------------------------------- /images/contributing/commit-changes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/contributing/commit-changes.png -------------------------------------------------------------------------------- /images/contributing/edit-button-pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/contributing/edit-button-pencil.png -------------------------------------------------------------------------------- /images/contributing/edit-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/contributing/edit-file.png -------------------------------------------------------------------------------- /images/contributing/new-pull-request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/contributing/new-pull-request.png -------------------------------------------------------------------------------- /images/contributing/preview-changes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/contributing/preview-changes.png -------------------------------------------------------------------------------- /images/contributing/pull-requests-checks-fails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/contributing/pull-requests-checks-fails.png -------------------------------------------------------------------------------- /images/contributing/pull-requests-checks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/contributing/pull-requests-checks.png -------------------------------------------------------------------------------- /images/contributing/pull-requests-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/contributing/pull-requests-tab.png -------------------------------------------------------------------------------- /images/flower-puzzle-pyopensci.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/flower-puzzle-pyopensci.jpg -------------------------------------------------------------------------------- /images/geopandas-documentation-landing-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/geopandas-documentation-landing-page.png -------------------------------------------------------------------------------- /images/license-github-root-dir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/license-github-root-dir.png -------------------------------------------------------------------------------- /images/moving-pandas-python-package-github-community-standards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/moving-pandas-python-package-github-community-standards.png -------------------------------------------------------------------------------- /images/moving-pandas-python-package-github-main-repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/moving-pandas-python-package-github-main-repo.png -------------------------------------------------------------------------------- /images/moving-pandas-python-package-snyk-health.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/moving-pandas-python-package-snyk-health.png -------------------------------------------------------------------------------- /images/packaging-lifecycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/packaging-lifecycle.png -------------------------------------------------------------------------------- /images/pandera-python-package-readme-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/pandera-python-package-readme-github.png -------------------------------------------------------------------------------- /images/precommit-hook-python-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/precommit-hook-python-code.png -------------------------------------------------------------------------------- /images/publish-python-package-pypi-conda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/publish-python-package-pypi-conda.png -------------------------------------------------------------------------------- /images/pyopensci-puzzle-pieces-tests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/pyopensci-puzzle-pieces-tests.png -------------------------------------------------------------------------------- /images/pyopensci-python-package-pypi-to-conda-forge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/pyopensci-python-package-pypi-to-conda-forge.png -------------------------------------------------------------------------------- /images/pypi-project-landing-page-no-meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/pypi-project-landing-page-no-meta.png -------------------------------------------------------------------------------- /images/python-build-package/pypi-metadata-classifiers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/python-build-package/pypi-metadata-classifiers.png -------------------------------------------------------------------------------- /images/python-build-package/pypi-metadata-keywords-license.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/python-build-package/pypi-metadata-keywords-license.png -------------------------------------------------------------------------------- /images/python-build-package/pypi-metadata-maintainers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/python-build-package/pypi-metadata-maintainers.png -------------------------------------------------------------------------------- /images/python-dependency-conflicts-xkcd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/python-dependency-conflicts-xkcd.png -------------------------------------------------------------------------------- /images/python-flying-xkcd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/python-flying-xkcd.png -------------------------------------------------------------------------------- /images/python-package-dependencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/python-package-dependencies.png -------------------------------------------------------------------------------- /images/python-package-dependency-types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/python-package-dependency-types.png -------------------------------------------------------------------------------- /images/python-package-development-process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/python-package-development-process.png -------------------------------------------------------------------------------- /images/python-package-documentation-nb_sphinx-gallery-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/python-package-documentation-nb_sphinx-gallery-output.png -------------------------------------------------------------------------------- /images/python-package-tools-2022-survey-pypa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/python-package-tools-2022-survey-pypa.png -------------------------------------------------------------------------------- /images/python-package-tools-decision-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/python-package-tools-decision-tree.png -------------------------------------------------------------------------------- /images/python-pypi-conda-channels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/python-pypi-conda-channels.png -------------------------------------------------------------------------------- /images/python-tests-puzzle-fit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/python-tests-puzzle-fit.png -------------------------------------------------------------------------------- /images/python-tests-puzzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/python-tests-puzzle.png -------------------------------------------------------------------------------- /images/sphinx-gallery-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/sphinx-gallery-overview.png -------------------------------------------------------------------------------- /images/sphinx-gallery-tutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/sphinx-gallery-tutorial.png -------------------------------------------------------------------------------- /images/sphinx-rendering-extent-to-json-earthpy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/sphinx-rendering-extent-to-json-earthpy.png -------------------------------------------------------------------------------- /images/trusted-publisher-pypi-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/trusted-publisher-pypi-github.png -------------------------------------------------------------------------------- /images/trusted-publisher-pypi-github.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/trusted-publisher-pypi-github.webp -------------------------------------------------------------------------------- /images/tutorials/code-to-python-package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/tutorials/code-to-python-package.png -------------------------------------------------------------------------------- /images/tutorials/environment-package-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/tutorials/environment-package-install.png -------------------------------------------------------------------------------- /images/tutorials/github-actions-release-workflows-artifacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/tutorials/github-actions-release-workflows-artifacts.png -------------------------------------------------------------------------------- /images/tutorials/github-actions-release-workflows-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/tutorials/github-actions-release-workflows-run.png -------------------------------------------------------------------------------- /images/tutorials/github-actions-release-workflows-summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/tutorials/github-actions-release-workflows-summary.png -------------------------------------------------------------------------------- /images/tutorials/github-new-repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/tutorials/github-new-repo.png -------------------------------------------------------------------------------- /images/tutorials/package-components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/tutorials/package-components.png -------------------------------------------------------------------------------- /images/tutorials/packaging-101-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/tutorials/packaging-101-outline.png -------------------------------------------------------------------------------- /images/tutorials/packaging-elements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/tutorials/packaging-elements.png -------------------------------------------------------------------------------- /images/tutorials/packaging-lifecycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/tutorials/packaging-lifecycle.png -------------------------------------------------------------------------------- /images/tutorials/publish-package-pypi-conda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/tutorials/publish-package-pypi-conda.png -------------------------------------------------------------------------------- /images/tutorials/test-pypi-package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/tutorials/test-pypi-package.png -------------------------------------------------------------------------------- /images/tutorials/testpypi-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/tutorials/testpypi-search.png -------------------------------------------------------------------------------- /images/tutorials/toolbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/tutorials/toolbox.png -------------------------------------------------------------------------------- /images/tutorials/trusted-publishing-publishing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/tutorials/trusted-publishing-publishing.png -------------------------------------------------------------------------------- /images/tutorials/trusted-publishing-your-projects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/tutorials/trusted-publishing-your-projects.png -------------------------------------------------------------------------------- /images/tutorials/view-license-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/images/tutorials/view-license-github.png -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/index.md -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/CONTRIBUTING.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/locales/es/LC_MESSAGES/CONTRIBUTING.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/TRANSLATING.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/locales/es/LC_MESSAGES/TRANSLATING.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/continuous-integration.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/locales/es/LC_MESSAGES/continuous-integration.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/documentation.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/locales/es/LC_MESSAGES/documentation.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/locales/es/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/package-structure-code.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/locales/es/LC_MESSAGES/package-structure-code.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/tests.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/locales/es/LC_MESSAGES/tests.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/locales/es/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /locales/ja/LC_MESSAGES/CONTRIBUTING.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/locales/ja/LC_MESSAGES/CONTRIBUTING.po -------------------------------------------------------------------------------- /locales/ja/LC_MESSAGES/TRANSLATING.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/locales/ja/LC_MESSAGES/TRANSLATING.po -------------------------------------------------------------------------------- /locales/ja/LC_MESSAGES/continuous-integration.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/locales/ja/LC_MESSAGES/continuous-integration.po -------------------------------------------------------------------------------- /locales/ja/LC_MESSAGES/documentation.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/locales/ja/LC_MESSAGES/documentation.po -------------------------------------------------------------------------------- /locales/ja/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/locales/ja/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /locales/ja/LC_MESSAGES/package-structure-code.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/locales/ja/LC_MESSAGES/package-structure-code.po -------------------------------------------------------------------------------- /locales/ja/LC_MESSAGES/tests.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/locales/ja/LC_MESSAGES/tests.po -------------------------------------------------------------------------------- /locales/ja/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/locales/ja/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /maintain-automate/ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/maintain-automate/ci.md -------------------------------------------------------------------------------- /maintain-automate/environment-managers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/maintain-automate/environment-managers.md -------------------------------------------------------------------------------- /maintain-automate/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/maintain-automate/index.md -------------------------------------------------------------------------------- /maintain-automate/task-runners.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/maintain-automate/task-runners.md -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/noxfile.py -------------------------------------------------------------------------------- /package-structure-code/code-style-linting-format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/package-structure-code/code-style-linting-format.md -------------------------------------------------------------------------------- /package-structure-code/complex-python-package-builds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/package-structure-code/complex-python-package-builds.md -------------------------------------------------------------------------------- /package-structure-code/declare-dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/package-structure-code/declare-dependencies.md -------------------------------------------------------------------------------- /package-structure-code/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/package-structure-code/intro.md -------------------------------------------------------------------------------- /package-structure-code/publish-python-package-pypi-conda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/package-structure-code/publish-python-package-pypi-conda.md -------------------------------------------------------------------------------- /package-structure-code/pyproject-toml-python-package-metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/package-structure-code/pyproject-toml-python-package-metadata.md -------------------------------------------------------------------------------- /package-structure-code/python-package-build-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/package-structure-code/python-package-build-tools.md -------------------------------------------------------------------------------- /package-structure-code/python-package-distribution-files-sdist-wheel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/package-structure-code/python-package-distribution-files-sdist-wheel.md -------------------------------------------------------------------------------- /package-structure-code/python-package-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/package-structure-code/python-package-structure.md -------------------------------------------------------------------------------- /package-structure-code/python-package-versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/package-structure-code/python-package-versions.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/code-cov.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/tests/code-cov.md -------------------------------------------------------------------------------- /tests/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/tests/index.md -------------------------------------------------------------------------------- /tests/run-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/tests/run-tests.md -------------------------------------------------------------------------------- /tests/test-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/tests/test-types.md -------------------------------------------------------------------------------- /tests/tests-ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/tests/tests-ci.md -------------------------------------------------------------------------------- /tests/write-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/tests/write-tests.md -------------------------------------------------------------------------------- /tutorials/add-license-coc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/tutorials/add-license-coc.md -------------------------------------------------------------------------------- /tutorials/add-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/tutorials/add-readme.md -------------------------------------------------------------------------------- /tutorials/command-line-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/tutorials/command-line-reference.md -------------------------------------------------------------------------------- /tutorials/create-python-package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/tutorials/create-python-package.md -------------------------------------------------------------------------------- /tutorials/develop-python-package-hatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/tutorials/develop-python-package-hatch.md -------------------------------------------------------------------------------- /tutorials/get-to-know-hatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/tutorials/get-to-know-hatch.md -------------------------------------------------------------------------------- /tutorials/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/tutorials/intro.md -------------------------------------------------------------------------------- /tutorials/publish-conda-forge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/tutorials/publish-conda-forge.md -------------------------------------------------------------------------------- /tutorials/publish-pypi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/tutorials/publish-pypi.md -------------------------------------------------------------------------------- /tutorials/pyproject-toml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/tutorials/pyproject-toml.md -------------------------------------------------------------------------------- /tutorials/setup-py-to-pyproject-toml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/tutorials/setup-py-to-pyproject-toml.md -------------------------------------------------------------------------------- /tutorials/trusted-publishing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/tutorials/trusted-publishing.md -------------------------------------------------------------------------------- /vale-styles/config/vocabularies/sample/accept.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vale-styles/config/vocabularies/sample/reject.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vale-styles/package-guide-test/PyPI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/vale-styles/package-guide-test/PyPI.yml -------------------------------------------------------------------------------- /vale-styles/write-good/Cliches.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/vale-styles/write-good/Cliches.yml -------------------------------------------------------------------------------- /vale-styles/write-good/E-Prime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/vale-styles/write-good/E-Prime.yml -------------------------------------------------------------------------------- /vale-styles/write-good/Illusions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/vale-styles/write-good/Illusions.yml -------------------------------------------------------------------------------- /vale-styles/write-good/Passive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/vale-styles/write-good/Passive.yml -------------------------------------------------------------------------------- /vale-styles/write-good/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/vale-styles/write-good/README.md -------------------------------------------------------------------------------- /vale-styles/write-good/So.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/vale-styles/write-good/So.yml -------------------------------------------------------------------------------- /vale-styles/write-good/ThereIs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/vale-styles/write-good/ThereIs.yml -------------------------------------------------------------------------------- /vale-styles/write-good/TooWordy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/vale-styles/write-good/TooWordy.yml -------------------------------------------------------------------------------- /vale-styles/write-good/Weasel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/vale-styles/write-good/Weasel.yml -------------------------------------------------------------------------------- /vale-styles/write-good/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyOpenSci/python-package-guide/HEAD/vale-styles/write-good/meta.json --------------------------------------------------------------------------------