├── .buildkite ├── check-line-endings.sh ├── install-repo.sh ├── pipeline.yml ├── run-bandit.sh ├── run-black.sh ├── run-isort.sh ├── run-package.sh ├── run-pytest.sh ├── validate-branch-age.sh └── validate-lockfile.sh ├── .flake8 ├── .github ├── CODEOWNERS ├── release-action-config.json └── workflows │ ├── docs.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── adr ├── 01-versioning.md ├── 02-release-flow.md └── README.md ├── docs ├── Makefile ├── coding-standard.rst ├── conf.py ├── index.rst └── make.bat ├── pdm-plugin-torch └── pdm_plugin_torch │ ├── __init__.py │ ├── config.py │ └── main.py ├── pdm.lock ├── pyproject.toml └── tests ├── __init__.py ├── conftest.py ├── fixtures └── cpu-only │ └── pyproject.toml └── test_lock.py /.buildkite/check-line-endings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/pdm-plugin-torch/HEAD/.buildkite/check-line-endings.sh -------------------------------------------------------------------------------- /.buildkite/install-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/pdm-plugin-torch/HEAD/.buildkite/install-repo.sh -------------------------------------------------------------------------------- /.buildkite/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/pdm-plugin-torch/HEAD/.buildkite/pipeline.yml -------------------------------------------------------------------------------- /.buildkite/run-bandit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/pdm-plugin-torch/HEAD/.buildkite/run-bandit.sh -------------------------------------------------------------------------------- /.buildkite/run-black.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/pdm-plugin-torch/HEAD/.buildkite/run-black.sh -------------------------------------------------------------------------------- /.buildkite/run-isort.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/pdm-plugin-torch/HEAD/.buildkite/run-isort.sh -------------------------------------------------------------------------------- /.buildkite/run-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/pdm-plugin-torch/HEAD/.buildkite/run-package.sh -------------------------------------------------------------------------------- /.buildkite/run-pytest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/pdm-plugin-torch/HEAD/.buildkite/run-pytest.sh -------------------------------------------------------------------------------- /.buildkite/validate-branch-age.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/pdm-plugin-torch/HEAD/.buildkite/validate-branch-age.sh -------------------------------------------------------------------------------- /.buildkite/validate-lockfile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/pdm-plugin-torch/HEAD/.buildkite/validate-lockfile.sh -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 100 3 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/pdm-plugin-torch/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/release-action-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/pdm-plugin-torch/HEAD/.github/release-action-config.json -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/pdm-plugin-torch/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/pdm-plugin-torch/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/pdm-plugin-torch/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/pdm-plugin-torch/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/pdm-plugin-torch/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/pdm-plugin-torch/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/pdm-plugin-torch/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/pdm-plugin-torch/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/pdm-plugin-torch/HEAD/README.md -------------------------------------------------------------------------------- /adr/01-versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/pdm-plugin-torch/HEAD/adr/01-versioning.md -------------------------------------------------------------------------------- /adr/02-release-flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/pdm-plugin-torch/HEAD/adr/02-release-flow.md -------------------------------------------------------------------------------- /adr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/pdm-plugin-torch/HEAD/adr/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/pdm-plugin-torch/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/coding-standard.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/pdm-plugin-torch/HEAD/docs/coding-standard.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/pdm-plugin-torch/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/pdm-plugin-torch/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/pdm-plugin-torch/HEAD/docs/make.bat -------------------------------------------------------------------------------- /pdm-plugin-torch/pdm_plugin_torch/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | 3 | """ 4 | -------------------------------------------------------------------------------- /pdm-plugin-torch/pdm_plugin_torch/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/pdm-plugin-torch/HEAD/pdm-plugin-torch/pdm_plugin_torch/config.py -------------------------------------------------------------------------------- /pdm-plugin-torch/pdm_plugin_torch/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/pdm-plugin-torch/HEAD/pdm-plugin-torch/pdm_plugin_torch/main.py -------------------------------------------------------------------------------- /pdm.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/pdm-plugin-torch/HEAD/pdm.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/pdm-plugin-torch/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/pdm-plugin-torch/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/pdm-plugin-torch/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/fixtures/cpu-only/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/pdm-plugin-torch/HEAD/tests/fixtures/cpu-only/pyproject.toml -------------------------------------------------------------------------------- /tests/test_lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/pdm-plugin-torch/HEAD/tests/test_lock.py --------------------------------------------------------------------------------