File tree Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 1+ # https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
2+
3+ # GLOBAL CODEOWNERS ---
4+ # These owners will be the default owners for everything in
5+ # the repo. Unless a later match takes precedence,
6+ # they will be requested for review when someone opens a pull request.
7+ * @ pylhc/approved-reviewers
8+ * @ Mael-Le-Garrec
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ The Chromaticity GUI is a tool to compute non-linear chromaticity via measuremen
66## Running via acc-py environment
77
88* [ Create a virtual environment via ` acc-py ` ] ( https://pylhc.github.io/packages/development/howto_venv.html ) if you do not have one already.
9- * Install the package via ` pip install chroma-gui `
9+ * Install the package via ` pip install chroma-gui[cern] ` or ` pip install chroma-gui[all] `
1010* Run the GUI via ` python -m chroma_gui `
1111
1212## Running via acc-py apps
Original file line number Diff line number Diff line change @@ -47,7 +47,6 @@ classifiers = [
4747dependencies = [
4848 " matplotlib" ,
4949 " tfs-pandas" ,
50- " pytimber" ,
5150 " pyqt5 >= 5.14" , # for Qt.MarkdownText
5251 " pandas" ,
5352 " numpy" ,
@@ -68,8 +67,12 @@ doc = [
6867 " sphinx >= 7.0" ,
6968 " sphinx_rtd_theme >= 2.0" ,
7069]
70+ cern = [
71+ " pytimber" ,
72+ ]
7173
7274all = [
75+ " chroma_gui[cern]" ,
7376 " chroma_gui[test]" ,
7477 " chroma_gui[doc]" ,
7578]
You can’t perform that action at this time.
0 commit comments