Initial version
This commit is contained in:
commit
9a9985269a
6 changed files with 38 additions and 0 deletions
10
.gitignore
vendored
Normal file
10
.gitignore
vendored
Normal 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
1
.python-version.jinja
Normal file
|
|
@ -0,0 +1 @@
|
|||
{{minimum_python_version}}
|
||||
3
README.md.jinja
Normal file
3
README.md.jinja
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# {{project_name}}
|
||||
|
||||
{{project_description}}
|
||||
17
copier.yml
Normal file
17
copier.yml
Normal 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
7
pyproject.toml.jinja
Normal 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 = []
|
||||
0
{{project_name}}/__init__.py
Normal file
0
{{project_name}}/__init__.py
Normal file
Loading…
Add table
Reference in a new issue