Skip to content

Commit 0d9a94f

Browse files
committed
rename to epics_containers, add logo
1 parent 4c29311 commit 0d9a94f

17 files changed

+1264
-33
lines changed

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ sphinx-rtd-theme = "*"
2626

2727
[packages]
2828
# All other package requirements from setup.cfg
29-
k8s_epics_docs = {editable = true, path = "."}
29+
epics_containers = {editable = true, path = "."}
3030

3131
[scripts]
3232
tests = "python -m pytest"

docs/conf.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,20 @@
1212
import os
1313
import sys
1414

15-
import k8s_epics_docs # noqa
15+
import epics_containers # noqa
1616

1717
sys.path.insert(0, os.path.abspath(os.path.join(__file__, "..", "..")))
1818

1919

2020
# -- General configuration ------------------------------------------------
2121

2222
# General information about the project.
23-
project = "k8s_epics_docs"
23+
project = "epics_containers"
2424
copyright = "2021, Diamond Light Source"
2525
author = "Giles Knap"
2626

2727
# The full version, including alpha/beta/rc tags.
28-
release = k8s_epics_docs.__version__
28+
release = epics_containers.__version__
2929

3030
# The short X.Y version.
3131
if "+" in release:
@@ -131,8 +131,9 @@
131131
html_css_files = ["theme_overrides.css"]
132132

133133
# Logo
134-
html_logo = "images/dls-logo.svg"
135-
html_favicon = "images/dls-favicon.ico"
134+
html_logo = "images/k8s-epics.png"
135+
html_favicon = "images/k8s-epics.ico"
136+
136137

137138
# sphinx-multiversion config
138139
smv_rebuild_tags = False

epics_containers/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from epics_containers._version_git import __version__
2+
3+
__all__ = ["__version__"]

epics_containers/__main__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
from epics_containers import cli
2+
3+
# test with:
4+
# pipenv run python -m epics_containers
5+
if __name__ == "__main__":
6+
cli.main()
File renamed without changes.

k8s_epics_docs/cli.py renamed to epics_containers/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from argparse import ArgumentParser
22

3-
from k8s_epics_docs import __version__
3+
from epics_containers import __version__
44

55

66
def main(args=None):

images/dls-favicon.ico

-97.3 KB
Binary file not shown.

images/dls-logo.svg

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

images/k8s-epics.ico

63.5 KB
Binary file not shown.

images/k8s-epics.png

218 KB
Loading

0 commit comments

Comments
 (0)