-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new files for technote2 migration
- Loading branch information
Showing
3 changed files
with
61 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.5.0 | ||
hooks: | ||
# - id: trailing-whitespace | ||
- id: check-yaml | ||
- id: check-toml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
[technote] | ||
id = "SQR-080" | ||
series_id = "SQR" | ||
canonical_url = "https://sqr-080.lsst.io/" | ||
github_url = "https://github.com/lsst-sqre/sqr-080" | ||
github_default_branch = "main" | ||
organization.name = "Vera C. Rubin Observatory" | ||
organization.ror = "https://ror.org/048g3cy84" | ||
license.id = "CC-BY-4.0" | ||
[[technote.authors]] | ||
name = {given = "Frossie", family = "Economou"} | ||
internal_id = "economouf" | ||
orcid = "https://orcid.org/0000-0002-8333-7615" | ||
[[technote.authors.affiliations]] | ||
name = "Rubin Observatory Project Office" | ||
internal_id = "RubinObs" | ||
address = "950 N. Cherry Ave., Tucson, AZ 85719, USA" | ||
|
||
[[technote.authors]] | ||
name = {given = "Russ", family = "Allbery"} | ||
internal_id = "allberyr" | ||
[[technote.authors.affiliations]] | ||
name = "Rubin Observatory Project Office" | ||
internal_id = "RubinObs" | ||
address = "950 N. Cherry Ave., Tucson, AZ 85719, USA" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
[tox] | ||
environments = html | ||
isolated_build = True | ||
|
||
[testenv] | ||
skip_install = true | ||
deps = | ||
-rrequirements.txt | ||
|
||
[testenv:html] | ||
commands = | ||
sphinx-build --keep-going -n -W -T -b html -d _build/doctrees . _build/html | ||
|
||
[testenv:linkcheck] | ||
commands = | ||
sphinx-build --keep-going -n -W -T -b linkcheck -d _build/doctrees . _build/linkcheck | ||
|
||
[testenv:lint] | ||
deps = pre-commit | ||
commands = | ||
pre-commit run --all-files | ||
|
||
[testenv:add-author] | ||
commands = | ||
documenteer technote add-author | ||
|
||
[testenv:sync-authors] | ||
commands = | ||
documenteer technote sync-authors |