add .md files and pyenv
This commit is contained in:
parent
997726d4a0
commit
d008bf01be
5
TODO.md
5
TODO.md
|
@ -1,6 +1,5 @@
|
||||||
# TODO:
|
# TODO:
|
||||||
|
|
||||||
- readme
|
- generate gitea project
|
||||||
- tests
|
- tests
|
||||||
- pyenv
|
- add AGPL
|
||||||
- mypy/black/etc
|
|
||||||
|
|
1
{{ cookiecutter.project_slug }}/.python-version
Normal file
1
{{ cookiecutter.project_slug }}/.python-version
Normal file
|
@ -0,0 +1 @@
|
||||||
|
{{ cookiecutter.python_min_version }}
|
26
{{ cookiecutter.project_slug }}/README.md
Normal file
26
{{ cookiecutter.project_slug }}/README.md
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
{% set is_open_source = cookiecutter.open_source_license != 'Not open source' -%}
|
||||||
|
# {{ cookiecutter.project_name }}
|
||||||
|
|
||||||
|
{{ cookiecutter.project_short_description }}
|
||||||
|
|
||||||
|
## Install
|
||||||
|
|
||||||
|
This project can be installed using pip:
|
||||||
|
|
||||||
|
```
|
||||||
|
pip install git+{{ cookiecutter.project_url }}.git
|
||||||
|
```
|
||||||
|
|
||||||
|
{% if is_open_source %}
|
||||||
|
## License
|
||||||
|
|
||||||
|
This project if a free software released under the {{ cookiecutter.open_source_license }}.
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
## Author
|
||||||
|
|
||||||
|
- {{ cookiecutter.full_name }}
|
||||||
|
|
||||||
|
## Security
|
||||||
|
|
||||||
|
If you discover a potential security issue in this project, please contact {{ cookiecutter.email }}.
|
3
{{ cookiecutter.project_slug }}/SECURITY.md
Normal file
3
{{ cookiecutter.project_slug }}/SECURITY.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# Reporting a Vulnerability
|
||||||
|
|
||||||
|
If you discover a potential security issue in this project, please contact {{ cookiecutter.email }}.
|
Loading…
Reference in a new issue