-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
8 changed files
with
194 additions
and
61 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 |
---|---|---|
@@ -1,4 +1,18 @@ | ||
*.pyc | ||
test.py | ||
plugin/grasshopper/samplefiles/importBFFromGithub.gh | ||
venv | ||
venv | ||
.pytest_cache | ||
*/__pycache__ | ||
.coverage | ||
.ipynb_checkpoints | ||
*.ipynb | ||
.tox | ||
*.egg-info | ||
.eggs/* | ||
tox.ini | ||
build | ||
dist | ||
venv | ||
/.cache | ||
/.vscode |
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 |
---|---|---|
@@ -1,26 +1,7 @@ | ||
#!/bin/sh | ||
|
||
deploy_to_pypi() { | ||
echo "Building distribution" | ||
python setup.py sdist bdist_wheel | ||
echo "Pushing new version to PyPi" | ||
twine upload dist/* -u $PYPI_USERNAME -p $PYPI_PASSWORD | ||
} | ||
echo "Building distribution" | ||
python setup.py sdist bdist_wheel | ||
echo "Pushing new version to PyPi" | ||
twine upload dist/* -u $PYPI_USERNAME -p $PYPI_PASSWORD | ||
|
||
build_docs() { | ||
echo "Building documentation files" | ||
sphinx-apidoc -f -e -d 4 -o ./docs ./butterfly | ||
sphinx-build -b html ./docs ./docs/_build/docs -D release=$1 -D version=$1 | ||
} | ||
|
||
|
||
if [ -n "$1" ] | ||
then | ||
NEXT_RELEASE_VERSION=$1 | ||
else | ||
echo "A release version must be supplied" | ||
exit 1 | ||
fi | ||
|
||
deploy_to_pypi | ||
build_docs $NEXT_RELEASE_VERSION |
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,9 +1,17 @@ | ||
coverage==4.5.3 | ||
coveralls==1.7.0 | ||
pytest==4.3.1 | ||
pytest-cov==2.6.1 | ||
Sphinx==1.8.5 | ||
sphinx-bootstrap-theme==0.6.5 | ||
coverage==5.2.1 | ||
coveralls==1.7.0;python_version<'3.0' | ||
coveralls==2.1.2;python_version>='3.6' | ||
pytest==4.6.9;python_version<'3.0' | ||
pytest==6.0.1;python_version>='3.6' | ||
pytest-cov==2.10.1 | ||
Sphinx==1.8.5;python_version<'3.0' | ||
Sphinx==3.2.1;python_version>='3.6' | ||
sphinx-bootstrap-theme==0.7.1 | ||
sphinxcontrib-fulltoc==1.2.0 | ||
sphinxcontrib-websupport==1.1.0 | ||
twine==1.13.0 | ||
sphinxcontrib-websupport==1.1.2;python_version<'3.0' | ||
sphinxcontrib-websupport==1.2.4;python_version>='3.6' | ||
twine==1.13.0;python_version<'3.0' | ||
twine==3.2.0;python_version>='3.6' | ||
wheel==0.35.1 | ||
setuptools==44.1.0;python_version<'3.0' | ||
setuptools==50.3.0;python_version>='3.6' |
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,40 @@ | ||
/* | ||
* bootstrap-sphinx.css | ||
* ~~~~~~~~~~~~~~~~~~~~ | ||
* | ||
* Sphinx stylesheet -- Bootstrap theme. | ||
*/ | ||
|
||
|
||
/* The code below is based on the bootstrap website sidebar */ | ||
|
||
|
||
/* Show and affix the side nav when space allows it */ | ||
@media screen and (min-width: 992px) { | ||
.bs-sidenav .nav > .active > ul { | ||
display: block; | ||
} | ||
/* Widen the fixed sidenav */ | ||
.bs-sidenav.affix, | ||
.bs-sidenav.affix-bottom { | ||
width: 292px; | ||
} | ||
.bs-sidenav.affix { | ||
position: fixed; /* Undo the static from mobile first approach */ | ||
} | ||
.bs-sidenav.affix-bottom { | ||
position: absolute; /* Undo the static from mobile first approach */ | ||
} | ||
.bs-sidenav.affix-bottom .bs-sidenav, | ||
.bs-sidenav.affix .bs-sidenav { | ||
margin-top: 0; | ||
margin-bottom: 0; | ||
} | ||
} | ||
@media screen and (min-width: 1200px) { | ||
/* Widen the fixed sidenav again */ | ||
.bs-sidenav.affix-bottom, | ||
.bs-sidenav.affix { | ||
width: 360px; | ||
} | ||
} |
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,107 @@ | ||
{% extends "basic/layout.html" %} | ||
|
||
{% if theme_bootstrap_version == "3" %} | ||
{% set bootstrap_version, navbar_version = "3.3.7", "" %} | ||
{% set bs_span_prefix = "col-md-" %} | ||
{% else %} | ||
{% set bootstrap_version, navbar_version = "2.3.2", "-2" %} | ||
{% set bs_span_prefix = "span" %} | ||
{% endif %} | ||
|
||
{%- set render_sidebar = (not embedded) and (not theme_nosidebar|tobool) and sidebars %} | ||
|
||
{%- set bs_content_width = render_sidebar and "8" or "12"%} | ||
|
||
{%- block doctype -%} | ||
<!DOCTYPE html> | ||
{%- endblock %} | ||
|
||
{# Sidebar: Rework into our Bootstrap nav section. #} | ||
{% macro navBar() %} | ||
{% include "navbar" + navbar_version + ".html" %} | ||
{% endmacro %} | ||
|
||
{% if theme_bootstrap_version == "3" %} | ||
{%- macro bsidebar() %} | ||
{%- if render_sidebar %} | ||
<div class="{{ bs_span_prefix }}4"> | ||
<div id="sidebar" class="bs-sidenav" role="complementary"> | ||
{%- for sidebartemplate in sidebars %} | ||
{%- include sidebartemplate %} | ||
{%- endfor %} | ||
</div> | ||
</div> | ||
{%- endif %} | ||
{%- endmacro %} | ||
{% else %} | ||
{%- macro bsidebar() %} | ||
{%- if render_sidebar %} | ||
<div class="{{ bs_span_prefix }}4"> | ||
<div id="sidebar" class="bs-sidenav well" data-spy="affix"> | ||
{%- for sidebartemplate in sidebars %} | ||
{%- include sidebartemplate %} | ||
{%- endfor %} | ||
</div> | ||
</div> | ||
{%- endif %} | ||
{%- endmacro %} | ||
{% endif %} | ||
|
||
{%- block extrahead %} | ||
<meta charset='utf-8'> | ||
<meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'> | ||
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1'> | ||
<meta name="apple-mobile-web-app-capable" content="yes"> | ||
<script type="text/javascript" src="{{ pathto('_static/js/jquery-1.11.0.min.js', 1) }} "></script> | ||
<script type="text/javascript" src="{{ pathto('_static/js/jquery-fix.js', 1) }} "></script> | ||
<script type="text/javascript" src="{{ pathto('_static', 1) + '/bootstrap-' + bootstrap_version + '/js/bootstrap.min.js' }} "></script> | ||
<script type="text/javascript" src="{{ pathto('_static/bootstrap-sphinx.js', 1) }} "></script> | ||
{% endblock %} | ||
|
||
{# Silence the sidebar's, relbar's #} | ||
{% block header %}{% endblock %} | ||
{% block relbar1 %}{% endblock %} | ||
{% block relbar2 %}{% endblock %} | ||
{% block sidebarsourcelink %}{% endblock %} | ||
|
||
{%- block content %} | ||
{{ navBar() }} | ||
<div class="container"> | ||
<div class="row"> | ||
{%- block sidebar1 %}{{ bsidebar() }}{% endblock %} | ||
<div class="body {{ bs_span_prefix }}{{ bs_content_width }} content" role="main"> | ||
{% block body %}{% endblock %} | ||
</div> | ||
{% block sidebar2 %} {# possible location for sidebar #} {% endblock %} | ||
</div> | ||
</div> | ||
{%- endblock %} | ||
|
||
{%- block footer %} | ||
<footer class="footer"> | ||
<div class="container"> | ||
<p class="pull-right"> | ||
<a href="#">Back to top</a> | ||
{% if theme_source_link_position == "footer" %} | ||
<br/> | ||
{% include "sourcelink.html" %} | ||
{% endif %} | ||
</p> | ||
<p> | ||
{%- if show_copyright %} | ||
{%- if hasdoc('copyright') %} | ||
{% trans path=pathto('copyright'), copyright=copyright|e %}© <a href="{{ path }}">Copyright</a> {{ copyright }}.{% endtrans %}<br/> | ||
{%- else %} | ||
{% trans copyright=copyright|e %}© Copyright {{ copyright }}.{% endtrans %}<br/> | ||
{%- endif %} | ||
{%- endif %} | ||
{%- if last_updated %} | ||
{% trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %}<br/> | ||
{%- endif %} | ||
{%- if show_sphinx %} | ||
{% trans sphinx_version=sphinx_version|e %}Created using <a href="http://sphinx-doc.org/">Sphinx</a> {{ sphinx_version }}.{% endtrans %}<br/> | ||
{%- endif %} | ||
</p> | ||
</div> | ||
</footer> | ||
{%- endblock %} |
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 was deleted.
Oops, something went wrong.