diff --git a/.copier-answers.yml b/.copier-answers.yml
index be3b13ae..09431b18 100644
--- a/.copier-answers.yml
+++ b/.copier-answers.yml
@@ -1,5 +1,5 @@
# Changes here will be overwritten by Copier
-_commit: 5.0.1
+_commit: 5.0.2
_src_path: https://github.com/DiamondLightSource/python-copier-template
author_email: gary.yendell@diamond.ac.uk
author_name: Gary Yendell
@@ -15,6 +15,6 @@ git_platform: github.com
github_org: DiamondLightSource
package_name: fastcs
pypi: true
-repo_name: FastCS
+repo_name: fastcs
strict_typing: false
type_checker: pyright
diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
index a9bb8fcf..c19b4cf6 100644
--- a/.github/CONTRIBUTING.md
+++ b/.github/CONTRIBUTING.md
@@ -1,14 +1,14 @@
# Contribute to the project
Contributions and issues are most welcome! All issues and pull requests are
-handled through [GitHub](https://github.com/DiamondLightSource/FastCS/issues). Also, please check for any existing issues before
+handled through [GitHub](https://github.com/DiamondLightSource/fastcs/issues). Also, please check for any existing issues before
filing a new one. If you have a great idea but it involves big changes, please
file a ticket before making a pull request! We want to make sure you don't spend
your time coding something that might not fit the scope of the project.
## Issue or Discussion?
-Github also offers [discussions](https://github.com/DiamondLightSource/FastCS/discussions) as a place to ask questions and share ideas. If
+Github also offers [discussions](https://github.com/DiamondLightSource/fastcs/discussions) as a place to ask questions and share ideas. If
your issue is open ended and it is not obvious when it can be "closed", please
raise it as a discussion instead.
@@ -24,4 +24,4 @@ It is recommended that developers use a [vscode devcontainer](https://code.visua
This project was created using the [Diamond Light Source Copier Template](https://github.com/DiamondLightSource/python-copier-template) for Python projects.
-For more information on common tasks like setting up a developer environment, running the tests, and setting a pre-commit hook, see the template's [How-to guides](https://diamondlightsource.github.io/python-copier-template/5.0.1/how-to.html).
+For more information on common tasks like setting up a developer environment, running the tests, and setting a pre-commit hook, see the template's [How-to guides](https://diamondlightsource.github.io/python-copier-template/5.0.2/how-to.html).
diff --git a/README.md b/README.md
index 45415056..1aeda609 100644
--- a/README.md
+++ b/README.md
@@ -1,21 +1,21 @@
-[](https://github.com/DiamondLightSource/FastCS/actions/workflows/ci.yml)
-[](https://codecov.io/gh/DiamondLightSource/FastCS)
+[](https://github.com/DiamondLightSource/fastcs/actions/workflows/ci.yml)
+[](https://codecov.io/gh/DiamondLightSource/fastcs)
[](https://pypi.org/project/fastcs)
[](https://www.apache.org/licenses/LICENSE-2.0)
# FastCS
-Source |
+Source |
:---: | :---:
PyPI | `pip install fastcs`
-Documentation |
-Releases |
+Documentation |
+Releases |
FastCS is a control system agnostic framework for building Device support in Python that
will work for both EPICS and Tango without depending on either.
-See https://diamondlightsource.github.io/FastCS for more detailed documentation.
+See https://diamondlightsource.github.io/fastcs for more detailed documentation.
diff --git a/catalog-info.yaml b/catalog-info.yaml
index 20292e09..42fca2bd 100644
--- a/catalog-info.yaml
+++ b/catalog-info.yaml
@@ -2,7 +2,7 @@ apiVersion: backstage.io/v1alpha1
kind: Component
metadata:
name: fastcs
- title: FastCS
+ title: fastcs
description: Control system agnostic framework for building Device support in Python that will work for both EPICS and Tango
spec:
type: library
diff --git a/docs/conf.py b/docs/conf.py
index eb27c97b..88ced3f2 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -16,7 +16,7 @@
# -- General configuration ------------------------------------------------
# General information about the project.
-project = "FastCS"
+project = "fastcs"
# The full version, including alpha/beta/rc tags.
release = fastcs.__version__
@@ -172,7 +172,7 @@
# a list of builtin themes.
#
html_theme = "pydata_sphinx_theme"
-github_repo = "FastCS"
+github_repo = "fastcs"
github_user = "DiamondLightSource"
switcher_json = f"https://{github_user}.github.io/{github_repo}/switcher.json"
switcher_exists = requests.get(switcher_json).ok
diff --git a/docs/reference.md b/docs/reference.md
index 977d2463..c732ac9d 100644
--- a/docs/reference.md
+++ b/docs/reference.md
@@ -8,5 +8,5 @@ Technical reference material including APIs and release notes.
API <_api/fastcs>
genindex
-Release Notes
+Release Notes
```
diff --git a/docs/tutorials/installation.md b/docs/tutorials/installation.md
index 8e3ea0d1..f21e848f 100644
--- a/docs/tutorials/installation.md
+++ b/docs/tutorials/installation.md
@@ -31,7 +31,7 @@ If you require a feature that is not currently released you can also install
from github:
```
-$ python3 -m pip install git+https://github.com/DiamondLightSource/FastCS.git
+$ python3 -m pip install git+https://github.com/DiamondLightSource/fastcs.git
```
The library should now be installed. There is no application entrypoint, but the library can be imported:
diff --git a/pyproject.toml b/pyproject.toml
index de06d928..f178a375 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -76,7 +76,7 @@ dev = [
fastcs-demo = "fastcs.demo.__main__:main"
[project.urls]
-GitHub = "https://github.com/DiamondLightSource/FastCS"
+GitHub = "https://github.com/DiamondLightSource/fastcs"
[tool.setuptools_scm]
version_file = "src/fastcs/_version.py"