Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ You can contribute in many ways:

## Report Bugs

Report bugs at <https://github.com/fpgmaas/cookiecutter-uv/issues
Report bugs at <https://github.com/osprey-oss/cookiecutter-uv/issues

If you are reporting a bug, please include:

Expand All @@ -33,7 +33,7 @@ Cookiecutter PyPackage could always use more documentation, whether as part of t

## Submit Feedback

The best way to send feedback is to file an issue at <https://github.com/fpgmaas/cookiecutter-uv/issues.
The best way to send feedback is to file an issue at <https://github.com/osprey-oss/cookiecutter-uv/issues.

If you are proposing a new feature:

Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ bake-and-test-deploy: ## For quick publishing to cookiecutter-uv-example to test
@rm -rf cookiecutter-uv-example || true
@uv run cookiecutter --no-input . --overwrite-if-exists \
author="Florian Maas" \
email="fpgmaas@gmail.com" \
email="foo@email.com" \
github_author_handle=fpgmaas \
project_name=cookiecutter-uv-example \
project_slug=cookiecutter_uv_example
Expand All @@ -28,7 +28,7 @@ bake-and-test-deploy: ## For quick publishing to cookiecutter-uv-example to test
uv run pre-commit run -a || true && \
git add . && \
git commit -m "init commit" && \
git remote add origin git@github.com:fpgmaas/cookiecutter-uv-example.git && \
git remote add origin git@github.com:osprey-oss/cookiecutter-uv-example.git && \
git push -f origin main


Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<p align="center">
<img width="600" src="https://raw.githubusercontent.com/fpgmaas/cookiecutter-uv/main/docs/static/cookiecutter.svg">
<img width="600" src="https://raw.githubusercontent.com/osprey-oss/cookiecutter-uv/main/docs/static/cookiecutter.svg">
</p style = "margin-bottom: 2rem;">

---

[![Build status](https://img.shields.io/github/actions/workflow/status/fpgmaas/cookiecutter-uv/main.yml?branch=main)](https://github.com/fpgmaas/cookiecutter-uv/actions/workflows/main.yml?query=branch%3Amain)
[![Supported Python versions](https://img.shields.io/badge/python-_3.10_%7C_3.11_%7C_3.12_%7C_3.13_%7C_3.14-blue?labelColor=grey&color=blue)](https://github.com/fpgmaas/cookiecutter-uv/blob/main/pyproject.toml)
[![Build status](https://img.shields.io/github/actions/workflow/status/osprey-oss/cookiecutter-uv/main.yml?branch=main)](https://github.com/osprey-oss/cookiecutter-uv/actions/workflows/main.yml?query=branch%3Amain)
[![Supported Python versions](https://img.shields.io/badge/python-_3.10_%7C_3.11_%7C_3.12_%7C_3.13_%7C_3.14-blue?labelColor=grey&color=blue)](https://github.com/osprey-oss/cookiecutter-uv/blob/main/pyproject.toml)
[![Docs](https://img.shields.io/badge/docs-gh--pages-blue)](https://fpgmaas.github.io/cookiecutter-uv/)
[![License](https://img.shields.io/github/license/fpgmaas/cookiecutter-uv)](https://img.shields.io/github/license/fpgmaas/cookiecutter-uv)
[![License](https://img.shields.io/github/license/osprey-oss/cookiecutter-uv)](https://img.shields.io/github/license/osprey-oss/cookiecutter-uv)

This is a modern Cookiecutter template that can be used to initiate a Python project with all the necessary tools for development, testing, and deployment. It supports the following features:

Expand All @@ -26,7 +26,7 @@ This is a modern Cookiecutter template that can be used to initiate a Python pro
---

<p align="center">
<a href="https://fpgmaas.github.io/cookiecutter-uv/">Documentation</a> - <a href="https://github.com/fpgmaas/cookiecutter-uv-example">Example</a>
<a href="https://fpgmaas.github.io/cookiecutter-uv/">Documentation</a> - <a href="https://github.com/osprey-oss/cookiecutter-uv-example">Example</a>
</p>

---
Expand All @@ -37,14 +37,14 @@ On your local machine, navigate to the directory in which you want to
create a project directory, and run the following command:

```bash
uvx cookiecutter https://github.com/fpgmaas/cookiecutter-uv.git
uvx cookiecutter https://github.com/osprey-oss/cookiecutter-uv.git
```

or if you don't have `uv` installed yet:

```bash
pip install cookiecutter
cookiecutter https://github.com/fpgmaas/cookiecutter-uv.git
cookiecutter https://github.com/osprey-oss/cookiecutter-uv.git
```

Follow the prompts to configure your project. Once completed, a new directory containing your project will be created. Then navigate into your newly created project directory and follow the instructions in the `README.md` to complete the setup of your project.
Expand Down
2 changes: 1 addition & 1 deletion cookiecutter.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"author": "Florian Maas",
"email": "fpgmaas@gmail.com",
"email": "foo@email.com",
"author_github_handle": "fpgmaas",
"project_name": "example-project",
"project_slug": "{{cookiecutter.project_name|lower|replace('-', '_')}}",
Expand Down
6 changes: 3 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,22 +24,22 @@ This is a modern Cookiecutter template that can be used to initiate a Python pro
- Containerization with [Docker](https://www.docker.com/) or [Podman](https://podman.io/)
- Development environment with [VSCode devcontainers](https://code.visualstudio.com/docs/devcontainers/containers)

An example of a repository generated with this package can be found [here](https://github.com/fpgmaas/cookiecutter-uv-example).
An example of a repository generated with this package can be found [here](https://github.com/osprey-oss/cookiecutter-uv-example).

## Quickstart

On your local machine, navigate to the directory in which you want to
create a project directory, and run the following command:

```bash
uvx cookiecutter https://github.com/fpgmaas/cookiecutter-uv.git
uvx cookiecutter https://github.com/osprey-oss/cookiecutter-uv.git
```

or if you don't have `uv` installed yet:

```bash
pip install cookiecutter
cookiecutter https://github.com/fpgmaas/cookiecutter-uv.git
cookiecutter https://github.com/osprey-oss/cookiecutter-uv.git
```

Follow the prompts to configure your project. Once completed, a new directory containing your project will be created. Then navigate into your newly created project directory and follow the instructions in the `README.md` to complete the setup of your project.
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ On your local machine, navigate to the directory in which you want to
create a project directory, and run the following command:

```bash
uvx cookiecutter https://github.com/fpgmaas/cookiecutter-uv.git
uvx cookiecutter https://github.com/osprey-oss/cookiecutter-uv.git
```

For an explanation of the prompt arguments, see
Expand Down
6 changes: 3 additions & 3 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
site_name: cookiecutter-uv
repo_url: https://github.com/fpgmaas/cookiecutter-uv
repo_url: https://github.com/osprey-oss/cookiecutter-uv
site_url: https://fpgmaas.github.io/cookiecutter-uv
site_description: A cookiecutter template for Python projects that use uv for its dependency management
site_author: Florian Maas
edit_uri: edit/main/docs/
repo_name: fpgmaas/cookiecutter-uv
repo_name: osprey-oss/cookiecutter-uv
copyright: Maintained by <a href="https://fpgmaas.com">Florian</a>.

nav:
Expand Down Expand Up @@ -54,7 +54,7 @@ theme:
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/fpgmaas/cookiecutter-uv
link: https://github.com/osprey-oss/cookiecutter-uv
- icon: fontawesome/brands/python
link: https://pypi.org/project/cookiecutter-uv/
markdown_extensions:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ classifiers = [
cookiecutter-uv-cicd = "cookiecutter_uv.cicd.cli:cli"

[project.urls]
Repository = "https://github.com/fpgmaas/cookiecutter-uv"
Repository = "https://github.com/osprey-oss/cookiecutter-uv"
Documentation = "https://fpgmaas.github.io/cookiecutter-uv/"
Homepage = "https://fpgmaas.github.io/cookiecutter-uv/"

Expand Down
2 changes: 1 addition & 1 deletion {{cookiecutter.project_name}}/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,4 @@ For more details, see [here](https://fpgmaas.github.io/cookiecutter-uv/features/

---

Repository initiated with [fpgmaas/cookiecutter-uv](https://github.com/fpgmaas/cookiecutter-uv).
Repository initiated with [osprey-oss/cookiecutter-uv](https://github.com/osprey-oss/cookiecutter-uv).
Loading