Skip to content

Commit

Permalink
Adjust docs and pyproject.toml
Browse files Browse the repository at this point in the history
- add LOG_LEVEL to the documentation
- add psutils to pyproject.toml
  • Loading branch information
monodera committed Oct 9, 2024
1 parent bac53f0 commit 1d5673d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,6 @@ OUTPUT_DIR="data"
# maximum execution time (s) to terminate the calculation (default: 900s = 15min, 0 = no limit)
# MAX_EXETIME=0
# maximum number of pointings to be considered (default: 200, 0 = no limit)
# MAX_NPPC=100
# email setting (email will be sent at each submission)
# EMAIL_FROM=
# EMAIL_TO=
Expand All @@ -101,4 +98,8 @@ ANN_FILE="user_announcement.md"
# SQLite database file to be used for the duplication check of upload_id
# The file will be created under $OUTPUT_DIR
UPLOADID_DB="upload_id.sqlite"
# loggging level
# DEBUG, INFO (default), WARNING, ERROR, or CRITICAL
LOG_LEVEL="INFO"
```
7 changes: 4 additions & 3 deletions docs/docs/developer.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,6 @@ OUTPUT_DIR="data"
# maximum execution time (s) to terminate the calculation (default: 900s = 15min, 0 = no limit)
# MAX_EXETIME=0
# maximum number of pointings to be considered (default: 200, 0 = no limit)
# MAX_NPPC=100
# email setting (email will be sent at each submission)
# EMAIL_FROM=
# EMAIL_TO=
Expand All @@ -109,4 +106,8 @@ ANN_FILE="user_announcement.md"
# SQLite database file to be used for the duplication check of upload_id
# The file will be created under $OUTPUT_DIR
UPLOADID_DB="upload_id.sqlite"
# loggging level
# DEBUG, INFO (default), WARNING, ERROR, or CRITICAL
LOG_LEVEL="INFO"
```
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ dependencies = [
"ets-fiber-assigner @ git+https://github.com/Subaru-PFS/ets_fiberalloc.git",
"ics-cobraOps @ git+https://github.com/Subaru-PFS/ics_cobraOps.git",
"pfs-utils @ git+https://github.com/Subaru-PFS/pfs_utils.git",
"psutil>=6.0.0",
]
requires-python = ">=3.10,<3.13"
readme = "README.md"
Expand Down

0 comments on commit 1d5673d

Please sign in to comment.