From 64d05b3f9cfd5ae34a9e44a7d2c526b0c9cf3d6b Mon Sep 17 00:00:00 2001 From: Joseph Kato Date: Wed, 22 Jan 2020 22:04:43 -0800 Subject: [PATCH] 'src' -> 'docs' --- .gitignore | 1 + .gitmodules | 6 -- .travis.yml | 5 +- code/py/requirements.txt | 124 +-------------------------------------- {src => docs}/doc1.md | 0 5 files changed, 7 insertions(+), 129 deletions(-) delete mode 100644 .gitmodules rename {src => docs}/doc1.md (100%) diff --git a/.gitignore b/.gitignore index 6cc0488..2f5068b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ content resources +public # Logs logs diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index f5b47d7..0000000 --- a/.gitmodules +++ /dev/null @@ -1,6 +0,0 @@ -[submodule "themes/ananke"] - path = themes/ananke - url = https://github.com/budparr/gohugo-theme-ananke.git -[submodule "themes/hugo-now"] - path = themes/hugo-now - url = git@github.com:mikeblum/hugo-now.git diff --git a/.travis.yml b/.travis.yml index 9b81a06..380530b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,9 @@ language: python python: 3.7 install: + - curl -LO https://github.com/gohugoio/hugo/releases/download/v0.62.2/hugo_0.62.2_Linux-64bit.deb + - sudo dpkg -i hugo_0.62.2_Linux-64bit.deb + - pip install markdata script: @@ -22,7 +25,7 @@ script: after_success: # Build our content: - - markdata --root . src content/post + - markdata --root . docs content/post # Build our site: - hugo diff --git a/code/py/requirements.txt b/code/py/requirements.txt index 422b2d8..8418445 100644 --- a/code/py/requirements.txt +++ b/code/py/requirements.txt @@ -1,122 +1,2 @@ -altgraph==0.16.1 -appdirs==1.4.3 -atomicwrites==1.3.0 -attrs==18.2.0 -beautifulsoup4==4.7.0 -black==18.9b0 -bleach==3.1.0 -blinker==1.4 -cachetools==3.1.0 -certifi==2018.8.24 -chardet==3.0.4 -Click==7.0 -cssselect==1.0.3 -cycler==0.10.0 -cymem==2.0.2 -cytoolz==0.9.0.1 -delegator.py==0.1.1 -dill==0.2.9 -docutils==0.15 -en-core-web-sm==2.0.0 -et-xmlfile==1.0.1 -falcon==1.4.1 -feedfinder2==0.0.4 -feedgenerator==1.9 -feedparser==5.2.1 -future==0.18.2 -GDAL==2.4.2 -gitdb2==2.0.6 -GitPython==3.0.4 -hug==2.4.7 -idna==2.8 -importlib-metadata==0.18 -jdcal==1.4.1 -jieba3k==0.35.1 -Jinja2==2.10.3 -joblib==0.13.2 -jsonschema==2.6.0 -kiwisolver==1.1.0 -lxml==4.3.0 -macholib==1.11 -markdata==0.5.1 -Markdown==3.1.1 -MarkupSafe==1.1.1 -matplotlib==3.1.0 -more-itertools==7.1.0 -msgpack==0.5.6 -msgpack-numpy==0.4.3.2 -murmurhash==1.0.2 -newspaper3k==0.2.8 -nltk==3.4 -numpy==1.16.4 -opencv-python==4.1.0.25 -openpyxl==2.6.2 -oyaml==0.9 -packaging==19.0 -pandas==0.24.2 -pathspec==0.5.9 -peewee==2.10.2 -pelican==4.2.0 -pep8==1.7.1 -pexpect==4.7.0 -Pillow==5.4.0 -pipenv==2018.11.26 -pkginfo==1.5.0.1 -plac==0.9.6 -pluggy==0.12.0 -preshed==2.0.1 -prodigy==1.7.1 -proselint==0.10.2 -ptyprocess==0.6.0 -py==1.8.0 -pyasn1==0.4.5 -pycodestyle==2.5.0 -pyenchant==2.0.0 -Pygments==2.4.2 -PyInstaller==3.5 -PyJWT==1.7.1 -pyparsing==2.4.0 -pytest==5.0.1 -python-dateutil==2.7.5 -python-frontmatter==0.4.5 -python-mimeparse==1.6.0 -pytz==2019.1 -PyYAML==3.13 -readme-renderer==24.0 -regex==2018.1.10 -requests==2.21.0 -requests-file==1.4.3 -requests-toolbelt==0.9.1 -rsa==4.0 -scikit-learn==0.21.1 -scipy==1.3.0 -seaborn==0.9.0 -singledispatch==3.4.0.3 -six==1.12.0 -sklearn==0.0 -smmap2==2.0.5 -soupsieve==1.6.2 -spacy==2.0.18 -tabulate==0.8.3 -TBB==0.1 -thinc==6.12.1 -tinysegmenter==0.3 -tldextract==2.2.0 -toml==0.10.0 -toolz==0.9.0 -torch==1.0.1 -torchvision==0.2.2.post3 -tqdm==4.31.1 -twine==1.13.0 -ujson==1.35 -Unidecode==1.0.22 -UpSetPlot==0.2.1 -urllib3==1.24.1 -virtualenv==16.0.0 -virtualenv-clone==0.3.0 -waitress==1.2.1 -wcwidth==0.1.7 -webencodings==0.5.1 -wrapt==1.10.11 -yamllint==1.14.0 -zipp==0.5.2 +ruamel.yaml==0.16.6 +pytest==5.3.4 diff --git a/src/doc1.md b/docs/doc1.md similarity index 100% rename from src/doc1.md rename to docs/doc1.md