Initial version

This commit is contained in:
Yehuda Deutsch 2025-02-23 10:22:30 -05:00
commit 9a9985269a
Signed by: uda
GPG key ID: 8EF44B89374262A5
6 changed files with 38 additions and 0 deletions

10
.gitignore vendored Normal file
View file

@ -0,0 +1,10 @@
# Python-generated files
__pycache__/
*.py[oc]
build/
dist/
wheels/
*.egg-info
# Virtual environments
.venv

1
.python-version.jinja Normal file
View file

@ -0,0 +1 @@
{{minimum_python_version}}

3
README.md.jinja Normal file
View file

@ -0,0 +1,3 @@
# {{project_name}}
{{project_description}}

17
copier.yml Normal file
View file

@ -0,0 +1,17 @@
# Questions
project_name:
type: str
help: What is your project name?
project_description:
type: str
help: Describe your project
minimum_python_version:
type: str
help: Minmum python version
choices:
- "3.10"
- "3.11"
- "3.12"
- "3.13"

7
pyproject.toml.jinja Normal file
View file

@ -0,0 +1,7 @@
[project]
name = "{{project_name}}"
version = "0.1.0"
description = "{{project_description}}"
readme = "README.md"
requires-python = ">={{minimum_python_version}}"
dependencies = []

View file