Skip to content

Commit bb9c25b

Browse files
authored
Merge pull request #23 from 56kyle/develop
Develop
2 parents 2b58427 + 1460377 commit bb9c25b

33 files changed

+1315
-219
lines changed

.readthedocs.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,10 @@ build:
44
os: ubuntu-22.04
55
tools:
66
python: "3.13"
7+
8+
python:
9+
install:
10+
- requirements: docs/requirements.txt
11+
712
sphinx:
813
configuration: docs/conf.py

cookiecutter.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
"add_rust_extension": false,
88
"author": "Kyle Oliver",
99
"email": "56kyleoliver+cookiecutter-robust-python@gmail.com",
10-
"github_user": "56kyle",
10+
"repository_provider": ["github", "gitlab", "bitbucket"],
11+
"repository_host": "{% if cookiecutter.repository_provider == 'github' %}github.com{% elif cookiecutter.repository_provider == 'gitlab' %}gitlab.com{% else %}bitbucket.org{% endif %}",
12+
"repository_path": "56kyle/{{ cookiecutter.project_name.replace('_', '-') }}",
1113
"version": "0.0.0",
1214
"copyright_year": "{% now 'utc', '%Y' %}",
1315
"license": ["MIT", "Apache-2.0", "GPL-3.0"],

docs/requirements.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
furo==2024.8.6
2+
myst-parser==4.0.1
3+
sphinx==8.2.3
4+
sphinx-autodoc-typehints==3.2.0
5+
sphinx-copybutton==0.5.2
6+
sphinx-tabs==3.4.7
7+
sphinxcontrib-typer==0.5.1

{{cookiecutter.project_name}}/.cz.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ update_changelog_on_bump = true
1616
release = true
1717
release_asset_path = "dist/*"
1818
release_asset_descriptions = { "*.tar.gz" = "Source distribution", "*.whl" = "Python Wheel" }
19-
base_url = "https://github.com/{{ cookiecutter.github_user | lower | replace(' ', '-') }}/{{ cookiecutter.project_name.replace('_', '-') }}"
19+
base_url = "https://{{ cookiecutter.repository_host }}/{{ cookiecutter.repository_path }}"

{{cookiecutter.project_name}}/.github/workflows/{% if cookiecutter.add_rust_extension == 'y' %} lint-rust.yml {%- endif %}

Lines changed: 0 additions & 101 deletions
This file was deleted.

{{cookiecutter.project_name}}/.github/workflows/{% if cookiecutter.add_rust_extension == 'y' %} test-rust.yml {%- endif %}

Lines changed: 0 additions & 52 deletions
This file was deleted.

{{cookiecutter.project_name}}/.readthedocs.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,11 @@ build:
44
os: ubuntu-22.04
55
tools:
66
python: "3.13"
7+
8+
python:
9+
install:
10+
- requirements: docs/requirements.txt
11+
- path: .
12+
713
sphinx:
814
configuration: docs/conf.py

0 commit comments

Comments
 (0)