├── .circleci └── config.yml ├── .envrc ├── .github └── dependabot.yml ├── .gitignore ├── .pylintrc ├── .style.yapf ├── .vscode ├── extensions.json └── settings.json ├── .yapfignore ├── LICENSE ├── README.md ├── app ├── __init__.py ├── dummy.py └── dummy_test.py ├── dev-scripts ├── build ├── build-python ├── check-trailing-newline ├── check-trailing-whitespace ├── enable-git-hooks ├── format-python └── git-hooks │ └── pre-commit ├── dev_requirements.txt ├── flake.lock ├── flake.nix ├── main.py └── requirements.txt /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtlynch/python3_seed/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | use flake . 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtlynch/python3_seed/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtlynch/python3_seed/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtlynch/python3_seed/HEAD/.pylintrc -------------------------------------------------------------------------------- /.style.yapf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtlynch/python3_seed/HEAD/.style.yapf -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtlynch/python3_seed/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtlynch/python3_seed/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yapfignore: -------------------------------------------------------------------------------- 1 | venv/* 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtlynch/python3_seed/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtlynch/python3_seed/HEAD/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtlynch/python3_seed/HEAD/app/dummy.py -------------------------------------------------------------------------------- /app/dummy_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtlynch/python3_seed/HEAD/app/dummy_test.py -------------------------------------------------------------------------------- /dev-scripts/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtlynch/python3_seed/HEAD/dev-scripts/build -------------------------------------------------------------------------------- /dev-scripts/build-python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtlynch/python3_seed/HEAD/dev-scripts/build-python -------------------------------------------------------------------------------- /dev-scripts/check-trailing-newline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtlynch/python3_seed/HEAD/dev-scripts/check-trailing-newline -------------------------------------------------------------------------------- /dev-scripts/check-trailing-whitespace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtlynch/python3_seed/HEAD/dev-scripts/check-trailing-whitespace -------------------------------------------------------------------------------- /dev-scripts/enable-git-hooks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtlynch/python3_seed/HEAD/dev-scripts/enable-git-hooks -------------------------------------------------------------------------------- /dev-scripts/format-python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtlynch/python3_seed/HEAD/dev-scripts/format-python -------------------------------------------------------------------------------- /dev-scripts/git-hooks/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ./dev-scripts/build 4 | -------------------------------------------------------------------------------- /dev_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtlynch/python3_seed/HEAD/dev_requirements.txt -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtlynch/python3_seed/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtlynch/python3_seed/HEAD/flake.nix -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtlynch/python3_seed/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------