Skip to content
Snippets Groups Projects
Commit 52c3083f authored by u214892's avatar u214892
Browse files

#26 pydeps

parent 8e79b68f
No related branches found
No related tags found
No related merge requests found
...@@ -71,6 +71,7 @@ docs: ## generate Sphinx HTML documentation, including API docs ...@@ -71,6 +71,7 @@ docs: ## generate Sphinx HTML documentation, including API docs
sphinx-apidoc -o docs/ flatland sphinx-apidoc -o docs/ flatland
$(MAKE) -C docs clean $(MAKE) -C docs clean
$(MAKE) -C docs html $(MAKE) -C docs html
pydeps flatland -o docs/_build/html/flatland.svg
$(BROWSER) docs/_build/html/index.html $(BROWSER) docs/_build/html/index.html
servedocs: docs ## compile the docs watching for changes servedocs: docs ## compile the docs watching for changes
......
...@@ -92,6 +92,10 @@ flatland ...@@ -92,6 +92,10 @@ flatland
======== ========
TODO: explain the interface here TODO: explain the interface here
Module Dependencies
===================
.. image:: flatland.svg
Authors Authors
-------- --------
...@@ -102,6 +106,7 @@ Authors ...@@ -102,6 +106,7 @@ Authors
* Erik Nygren <erik.nygren@sbb.ch> * Erik Nygren <erik.nygren@sbb.ch>
* Adrian Egli <adrian.egli@sbb.ch> * Adrian Egli <adrian.egli@sbb.ch>
* Vaibhav Agrawal <theinfamouswayne@gmail.com> * Vaibhav Agrawal <theinfamouswayne@gmail.com>
* Christian Eichenberger <christian.markus.eichenberger@sbb.ch>
<please fill yourself in> <please fill yourself in>
...@@ -25,5 +25,6 @@ os.environ["SPHINXPROJ"] = "flatland" ...@@ -25,5 +25,6 @@ os.environ["SPHINXPROJ"] = "flatland"
os.chdir('docs') os.chdir('docs')
subprocess.call(['python', '-msphinx', '-M', 'clean', '.', '_build']) subprocess.call(['python', '-msphinx', '-M', 'clean', '.', '_build'])
subprocess.call(['python', '-msphinx', '-M', 'html', '.', '_build']) subprocess.call(['python', '-msphinx', '-M', 'html', '.', '_build'])
subprocess.call(['python', '-mpydeps', '../flatland', '-o', '_build/html/flatland.svg'])
browser('_build/html/index.html') browser('_build/html/index.html')
...@@ -2,6 +2,7 @@ bumpversion==0.5.3 ...@@ -2,6 +2,7 @@ bumpversion==0.5.3
wheel==0.32.1 wheel==0.32.1
watchdog==0.9.0 watchdog==0.9.0
flake8==3.5.0 flake8==3.5.0
pydeps==1.7.2
tox==3.5.2 tox==3.5.2
coverage==4.5.1 coverage==4.5.1
Sphinx==1.8.1 Sphinx==1.8.1
...@@ -18,4 +19,5 @@ matplotlib==3.0.2 ...@@ -18,4 +19,5 @@ matplotlib==3.0.2
PyQt5==5.12 PyQt5==5.12
Pillow==5.4.1 Pillow==5.4.1
svgutils==0.3.1 svgutils==0.3.1
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment