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 .copier-answers.yml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
6 changes: 3 additions & 3 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -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.

Expand All @@ -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).
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
<img alt="FastCS Logo" align="right" width="100" height="100" src="https://raw.githubusercontent.com/DiamondLightSource/FastCS/main/docs/images/fastcs.svg" target=https://github.com/DiamondLightSource/FastCS>

[![CI](https://github.com/DiamondLightSource/FastCS/actions/workflows/ci.yml/badge.svg)](https://github.com/DiamondLightSource/FastCS/actions/workflows/ci.yml)
[![Coverage](https://codecov.io/gh/DiamondLightSource/FastCS/branch/main/graph/badge.svg)](https://codecov.io/gh/DiamondLightSource/FastCS)
[![CI](https://github.com/DiamondLightSource/fastcs/actions/workflows/ci.yml/badge.svg)](https://github.com/DiamondLightSource/fastcs/actions/workflows/ci.yml)
[![Coverage](https://codecov.io/gh/DiamondLightSource/fastcs/branch/main/graph/badge.svg)](https://codecov.io/gh/DiamondLightSource/fastcs)
[![PyPI](https://img.shields.io/pypi/v/fastcs.svg)](https://pypi.org/project/fastcs)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0)

# FastCS

Source | <https://github.com/DiamondLightSource/FastCS>
Source | <https://github.com/DiamondLightSource/fastcs>
:---: | :---:
PyPI | `pip install fastcs`
Documentation | <https://diamondlightsource.github.io/FastCS>
Releases | <https://github.com/DiamondLightSource/FastCS/releases>
Documentation | <https://diamondlightsource.github.io/fastcs>
Releases | <https://github.com/DiamondLightSource/fastcs/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.

<!-- README only content. Anything below this line won't be included in index.md -->

See https://diamondlightsource.github.io/FastCS for more detailed documentation.
See https://diamondlightsource.github.io/fastcs for more detailed documentation.
2 changes: 1 addition & 1 deletion catalog-info.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ Technical reference material including APIs and release notes.

API <_api/fastcs>
genindex
Release Notes <https://github.com/DiamondLightSource/FastCS/releases>
Release Notes <https://github.com/DiamondLightSource/fastcs/releases>
```
2 changes: 1 addition & 1 deletion docs/tutorials/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down