Skip to content

Commit

Permalink
feat: adapt to personal likings
Browse files Browse the repository at this point in the history
  • Loading branch information
gremat committed Jun 13, 2024
1 parent 301ecea commit 77939cb
Show file tree
Hide file tree
Showing 59 changed files with 274 additions and 2,750 deletions.
14 changes: 3 additions & 11 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,14 @@
root = true

[*]
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
insert_final_newline = true
charset = utf-8
end_of_line = lf

[*.bat]
indent_style = tab
end_of_line = crlf

[LICENSE]
insert_final_newline = false
[*.py]
indent_style = space
indent_size = 4

[Makefile]
indent_style = tab

[*.{diff,patch}]
trim_trailing_whitespace = false
14 changes: 0 additions & 14 deletions .github/ISSUE_TEMPLATE.md

This file was deleted.

7 changes: 1 addition & 6 deletions .github/workflows/build-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,11 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install coverage
if [ -f requirements_dev.txt ]; then pip install -r requirements_dev.txt; else pip install .; fi
if [ -f requirements_dev.txt ]; then pip install -r requirements_dev.txt; else pip install .; fi
- name: Run Tests
run: |
pytest tests/
- name: Run package creation
run: |
python -m pip install --user --upgrade build
python -m build
- name: Archive package
uses: actions/upload-artifact@v2
with:
name: cookie-cutter
path: src/dist
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
__pycache__/
*.py[cod]
*$py.class
.mypy_cache/

# OSX useful to ignore
*.DS_Store
Expand Down
22 changes: 0 additions & 22 deletions .readthedocs.yaml

This file was deleted.

236 changes: 0 additions & 236 deletions CONTRIBUTING.rst

This file was deleted.

27 changes: 0 additions & 27 deletions LICENSE

This file was deleted.

4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ help:
@echo "test Run the tests"
@echo "replay Replay last cookiecutter run and watch for changes"
@echo "watch Generate project using defaults and watch for changes"


bake: # Generate project using defaults
cookiecutter $(BAKE_OPTIONS) . --overwrite-if-exists
Expand All @@ -19,4 +19,4 @@ replay: watch
;

test:
pytest
pytest
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Cookiecutter PyPackage
======================

Forked from: https://github.com/audreyfeldroy/cookiecutter-pypackage/
Loading

0 comments on commit 77939cb

Please sign in to comment.