├── .ci ├── flake8.cfg └── prettier.json ├── .github └── workflows │ ├── ci.yaml │ ├── integration.yaml │ └── release.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .vscode ├── extensions.json └── settings.json ├── Cargo.lock ├── Cargo.toml ├── LICENSE.md ├── Makefile ├── README.md ├── askama.toml ├── cpa.png ├── delete_a_tag.sh ├── example ├── base │ ├── .ci │ │ └── prettier.json │ ├── .github │ │ └── workflows │ │ │ └── ci.yaml │ ├── .gitignore │ ├── .pre-commit-config.yaml │ └── Makefile ├── python │ ├── .ci │ │ ├── flake8.cfg │ │ └── prettier.json │ ├── .github │ │ └── workflows │ │ │ └── ci.yaml │ ├── .gitignore │ ├── .pre-commit-config.yaml │ ├── .vscode │ │ ├── extensions.json │ │ └── settings.json │ ├── Dockerfile │ ├── Makefile │ ├── main.py │ └── pyproject.toml └── rust │ ├── .ci │ └── prettier.json │ ├── .github │ └── workflows │ │ └── ci.yaml │ ├── .gitignore │ ├── .pre-commit-config.yaml │ ├── .vscode │ ├── extensions.json │ └── settings.json │ ├── Cargo.toml │ ├── Makefile │ ├── rustfmt.toml │ └── src │ └── main.rs ├── install.sh ├── pyproject.toml ├── rustfmt.toml ├── src ├── main.rs └── presets.rs ├── templates ├── .ci │ ├── flake8.cfg │ └── prettier.json ├── .github │ └── workflows │ │ └── ci.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .vscode │ ├── extensions.json │ └── settings.json ├── Makefile ├── base │ └── .pre-commit-config.yaml ├── python │ ├── Dockerfile │ └── pyproject.toml └── rust │ ├── .pre-commit-config.yaml │ ├── Cargo.toml │ ├── rustfmt.toml │ └── src │ └── main.rs └── test.sh /.ci/flake8.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/.ci/flake8.cfg -------------------------------------------------------------------------------- /.ci/prettier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/.ci/prettier.json -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/integration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/.github/workflows/integration.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/README.md -------------------------------------------------------------------------------- /askama.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/askama.toml -------------------------------------------------------------------------------- /cpa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/cpa.png -------------------------------------------------------------------------------- /delete_a_tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/delete_a_tag.sh -------------------------------------------------------------------------------- /example/base/.ci/prettier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/example/base/.ci/prettier.json -------------------------------------------------------------------------------- /example/base/.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/example/base/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /example/base/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/example/base/.gitignore -------------------------------------------------------------------------------- /example/base/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/example/base/.pre-commit-config.yaml -------------------------------------------------------------------------------- /example/base/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/example/base/Makefile -------------------------------------------------------------------------------- /example/python/.ci/flake8.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/example/python/.ci/flake8.cfg -------------------------------------------------------------------------------- /example/python/.ci/prettier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/example/python/.ci/prettier.json -------------------------------------------------------------------------------- /example/python/.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/example/python/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /example/python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/example/python/.gitignore -------------------------------------------------------------------------------- /example/python/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/example/python/.pre-commit-config.yaml -------------------------------------------------------------------------------- /example/python/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/example/python/.vscode/extensions.json -------------------------------------------------------------------------------- /example/python/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/example/python/.vscode/settings.json -------------------------------------------------------------------------------- /example/python/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/example/python/Dockerfile -------------------------------------------------------------------------------- /example/python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/example/python/Makefile -------------------------------------------------------------------------------- /example/python/main.py: -------------------------------------------------------------------------------- 1 | print("Hello World") 2 | -------------------------------------------------------------------------------- /example/python/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/example/python/pyproject.toml -------------------------------------------------------------------------------- /example/rust/.ci/prettier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/example/rust/.ci/prettier.json -------------------------------------------------------------------------------- /example/rust/.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/example/rust/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /example/rust/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/example/rust/.gitignore -------------------------------------------------------------------------------- /example/rust/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/example/rust/.pre-commit-config.yaml -------------------------------------------------------------------------------- /example/rust/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/example/rust/.vscode/extensions.json -------------------------------------------------------------------------------- /example/rust/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/example/rust/.vscode/settings.json -------------------------------------------------------------------------------- /example/rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/example/rust/Cargo.toml -------------------------------------------------------------------------------- /example/rust/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/example/rust/Makefile -------------------------------------------------------------------------------- /example/rust/rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/example/rust/rustfmt.toml -------------------------------------------------------------------------------- /example/rust/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello, world!"); 3 | } 4 | -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/install.sh -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/pyproject.toml -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/presets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/src/presets.rs -------------------------------------------------------------------------------- /templates/.ci/flake8.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/templates/.ci/flake8.cfg -------------------------------------------------------------------------------- /templates/.ci/prettier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/templates/.ci/prettier.json -------------------------------------------------------------------------------- /templates/.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/templates/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /templates/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/templates/.gitignore -------------------------------------------------------------------------------- /templates/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/templates/.pre-commit-config.yaml -------------------------------------------------------------------------------- /templates/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/templates/.vscode/extensions.json -------------------------------------------------------------------------------- /templates/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/templates/.vscode/settings.json -------------------------------------------------------------------------------- /templates/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/templates/Makefile -------------------------------------------------------------------------------- /templates/base/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/templates/base/.pre-commit-config.yaml -------------------------------------------------------------------------------- /templates/python/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/templates/python/Dockerfile -------------------------------------------------------------------------------- /templates/python/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/templates/python/pyproject.toml -------------------------------------------------------------------------------- /templates/rust/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/templates/rust/.pre-commit-config.yaml -------------------------------------------------------------------------------- /templates/rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/templates/rust/Cargo.toml -------------------------------------------------------------------------------- /templates/rust/rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/templates/rust/rustfmt.toml -------------------------------------------------------------------------------- /templates/rust/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello, world!"); 3 | } 4 | -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysawa0/create-python-app/HEAD/test.sh --------------------------------------------------------------------------------