Skip to content

Commit

Permalink
Working
Browse files Browse the repository at this point in the history
Passes tests.
Fixed writing to .lin
Fixed comparing routes and processing them as project cards.
  • Loading branch information
e-lo committed Jan 17, 2020
1 parent 141e3be commit d84d347
Show file tree
Hide file tree
Showing 24 changed files with 1,422 additions and 4,787 deletions.
2 changes: 0 additions & 2 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
pytest
jupyter
notebook
recommonmark
sphinx
sphinx-autodoc-typehints
Expand Down
28 changes: 15 additions & 13 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,17 @@
# ones.
extensions = [
"sphinx.ext.autodoc",
'sphinx.ext.doctest',
"sphinx.ext.doctest",
"sphinx_autodoc_typehints",
'sphinx.ext.ifconfig',
"sphinx.ext.ifconfig",
"sphinx.ext.inheritance_diagram",
'sphinx.ext.intersphinx',
"sphinx.ext.intersphinx",
"sphinx.ext.todo",
"sphinx.ext.coverage",
"sphinx.ext.autosummary",
"sphinx.ext.viewcode",
"sphinx.ext.napoleon",
'recommonmark',
"recommonmark",
]

# Add any paths that contain templates here, relative to this directory.
Expand All @@ -73,20 +73,22 @@
html_static_path = ["_static"]

intersphinx_mapping = {
'pandas':('http://pandas.pydata.org/pandas-docs/stable/',None),
'network_wrangler':('https://wsp-sag.github.io/network_wrangler/',None),
"pandas": ("http://pandas.pydata.org/pandas-docs/stable/", None),
"network_wrangler": ("https://wsp-sag.github.io/network_wrangler/", None),
}


autodoc_default_options = {
'members': True,
'undoc-members': True,
'inherited-members':True,
'imported-members': True,
'show-inheritance':True,
'member-order': 'groupwise',
"members": True,
"undoc-members": True,
"inherited-members": True,
"imported-members": True,
"show-inheritance": True,
"member-order": "groupwise",
}

autoclass_content = "class" # classes should include both the class' and the __init__ method's docstring
autoclass_content = (
"class"
) # classes should include both the class' and the __init__ method's docstring

autosummary_generate = True
28 changes: 0 additions & 28 deletions lasso/Linki.py

This file was deleted.

160 changes: 0 additions & 160 deletions lasso/Node.py

This file was deleted.

57 changes: 0 additions & 57 deletions lasso/PNRLink.py

This file was deleted.

Loading

0 comments on commit d84d347

Please sign in to comment.