Skip to content

Commit

Permalink
first framework split from none version
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Apr 24, 2017
0 parents commit 82fae6e
Show file tree
Hide file tree
Showing 18 changed files with 880 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/.settings
/.project
/.pydevproject
20 changes: 20 additions & 0 deletions doc/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Minimal makefile for Sphinx documentation
#

# You can set these variables from the command line.
SPHINXOPTS =
SPHINXBUILD = sphinx-build
SPHINXPROJ = Spinnaker
SOURCEDIR = source
BUILDDIR = build

# Put it first so that "make" without argument is like "make help".
help:
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

.PHONY: help Makefile

# Catch-all target: route all unknown targets to Sphinx using the new
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
%: Makefile
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
15 changes: 15 additions & 0 deletions doc/doc_requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
six
enum34
lxml
-e git+https://github.com/SpiNNakerManchester/SpiNNUtils.git@master#egg=spinn_utilities
-e git+https://github.com/SpiNNakerManchester/SpiNNMachine.git@master#egg=spinn_machine
-e git+https://github.com/SpiNNakerManchester/SpiNNStorageHandlers.git@master#egg=spinn_storage_handlers
-e git+https://github.com/SpiNNakerManchester/SpiNNMan.git@master#egg=spinnman
-e git+https://github.com/SpiNNakerManchester/PACMAN.git@master#egg=pacman
-e git+https://github.com/SpiNNakerManchester/DataSpecification.git@master#egg=data_specification
-e git+https://github.com/SpiNNakerManchester/spalloc.git@master#egg=spalloc
-e git+https://github.com/SpiNNakerManchester/SpiNNFrontEndCommon.git@master#egg=spinn_front_end_common
-e git+https://github.com/SpiNNakerManchester/SpiNNakerGraphFrontEnd.git@master#egg=spinnaker_graph_front_end
-e git+https://github.com/SpiNNakerManchester/sPyNNaker.git@master#egg=spynnaker
-e git+https://github.com/SpiNNakerManchester/sPyNNakerExternalDevicesPlugin.git@master#egg=spynnaker_external_devices_plugin
-e git+https://github.com/SpiNNakerManchester/sPyNNakerExtraModelsPlugin.git@master#egg=spynnaker_extra_pynn_models
36 changes: 36 additions & 0 deletions doc/make.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
@ECHO OFF

pushd %~dp0

REM Command file for Sphinx documentation

if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set SOURCEDIR=source
set BUILDDIR=build
set SPHINXPROJ=Spinnaker

if "%1" == "" goto help

%SPHINXBUILD% >NUL 2>NUL
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)

%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
goto end

:help
%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%

:end
popd
Empty file added doc/source/_static/.gitignore
Empty file.
Loading

0 comments on commit 82fae6e

Please sign in to comment.