-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #205 from hed-standard/develop
Updated with latest fixes
- Loading branch information
Showing
15 changed files
with
148 additions
and
120 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,24 @@ | ||
--- | ||
name: Lychee link checker | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
codespell: | ||
name: Lychee link checker | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Link Checker | ||
id: lychee | ||
uses: lycheeverse/lychee-action@v1 | ||
with: | ||
# Check all markdown, html and reStructuredText files in repo (default) | ||
args: --base . --verbose --no-progress './**/*.md' './**/*.html' './**/*.rst' |
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,3 @@ | ||
<!-- This file lists all links/regex to be ignored by lychee in the link checker --> | ||
(_anchor|-anchor) | ||
|
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 |
---|---|---|
@@ -1,29 +1,29 @@ | ||
attrs>=21.4.0 | ||
click>=8.1.3 | ||
coverage>=6.3.2 | ||
defusedxml>=0.7.1 | ||
et-xmlfile>=1.1.0 | ||
Flask>=3.0.3 | ||
Flask-WTF>=1.2.1 | ||
inflect>=5.5.2 | ||
itsdangerous>=2.2.0 | ||
jdcal>=1.4.1 | ||
Jinja2>=3.1.2 | ||
alabaster==0.7.16 | ||
Babel==2.15.0 | ||
certifi==2024.7.4 | ||
charset-normalizer==3.3.2 | ||
docutils==0.20.1 | ||
idna==3.7 | ||
imagesize==1.4.1 | ||
Jinja2==3.1.4 | ||
markdown-it-py==3.0.0 | ||
MarkupSafe==2.1.5 | ||
myst-parser>=0.17.0 | ||
numpy>=1.20.3 | ||
numpydoc>=1.3.1 | ||
openpyxl>=3.0.9 | ||
pandas>=1.3.5 | ||
portalocker>=2.8.2 | ||
Pygments>=2.12.0 | ||
python-dateutil>=2.8.2 | ||
pytz>=2022.1 | ||
semantic_version>=2.9.0 | ||
six==1.16.0 | ||
Sphinx>=4,<8 | ||
SphinxExtensions>=0.2.0 | ||
sphinx_rtd_theme>=1.0.0 | ||
Werkzeug>=2.1.2 | ||
WTForms>=3.0.1 | ||
xlrd>=2.0.1 | ||
mdit-py-plugins==0.4.1 | ||
mdurl==0.1.2 | ||
myst-parser==3.0.1 | ||
packaging==24.1 | ||
Pygments==2.18.0 | ||
PyYAML==6.0.1 | ||
requests==2.32.3 | ||
snowballstemmer==2.2.0 | ||
Sphinx==7.4.7 | ||
sphinx-rtd-theme==2.0.0 | ||
sphinxcontrib-applehelp==1.0.8 | ||
sphinxcontrib-devhelp==1.0.6 | ||
sphinxcontrib-htmlhelp==2.0.6 | ||
sphinxcontrib-jquery==4.1 | ||
sphinxcontrib-jsmath==1.0.1 | ||
sphinxcontrib-qthelp==1.0.8 | ||
sphinxcontrib-serializinghtml==1.1.10 | ||
tomli==2.0.1 | ||
urllib3==2.2.2 |
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
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
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
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
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
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 |
---|---|---|
|
@@ -2,6 +2,50 @@ | |
requires = ["setuptools>=42", "versioneer[toml]"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "hedweb" | ||
dynamic = ["version"] | ||
description = "Web interface, REST services, and Docker deployment for HED tools." | ||
readme = "README.md" | ||
authors = [ | ||
{ name = "VisLab" }, | ||
{ name = "Ian Callanan" }, | ||
{ name = "Jeremy Cockfield" }, | ||
{ name = "Kay Robbins", email = "[email protected]" } | ||
] | ||
license = { text = "MIT License" } | ||
requires-python = ">=3.9" | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent" | ||
] | ||
|
||
dependencies = [ | ||
"Flask", | ||
"Flask-WTF", | ||
"openpyxl", | ||
"pandas", | ||
"Werkzeug", | ||
"requests" | ||
] | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/hed-standard/hed-web/" | ||
"Bug Tracker" = "https://github.com/hed-standard/hed-web/issues" | ||
|
||
[tool.setuptools.packages.find] | ||
namespaces = true | ||
include = ["hed*"] | ||
|
||
[tool.versioneer] | ||
VCS = "git" | ||
style = "pep440" | ||
versionfile_source = "hedweb/_version.py" | ||
versionfile_build = "hedweb/_version.py" | ||
tag_prefix = "" | ||
parentdir_prefix = "hedweb-" | ||
|
||
[tool.codespell] | ||
skip = '*.git,*.pdf,*.xml,*.mediawiki,*.svg,versioneer.py,venv*,*.tsv,*.yaml,*.yml,*.json,*.rdf,*.jsonld,spec_tests,*.css,*.css.map' | ||
ignore-words-list = 'te,parms,cACE' | ||
ignore-words-list = 'te,parms,cACE,assertIn' |
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
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
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
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