Skip to content

Commit

Permalink
Merge pull request #41 from neurord/packaging-fixes
Browse files Browse the repository at this point in the history
Packaging fixes contributed by Zbigniew Jędrzejewski-Szmek
  • Loading branch information
subhacom committed Jan 8, 2016
2 parents 2153112 + f12aee1 commit 9621ced
Show file tree
Hide file tree
Showing 14 changed files with 688 additions and 4 deletions.
674 changes: 674 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
include LICENSE
include README.md
graft benchmark
graft doc
graft examples
graft figures
graft graphviz
7 changes: 5 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,15 @@ def __getattr__(cls, name):
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
import sphinx
sphinx13 = sphinx.__version__.split('.') >= ['1', '3']

extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.mathjax',
'sphinx.ext.viewcode',
'sphinxcontrib.napoleon',
'sphinx.ext.coverage'
'sphinx.ext.coverage',
'sphinx.ext.napoleon' if sphinx13 else 'sphinxcontrib.napoleon',
]

# Add any paths that contain templates here, relative to this directory.
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ def read(fname):
description=("NSDF (Neuroscience Simulation Data Format)"),
license="GPL 3",
keywords="neuroscience simulation format data",
url="http://github.com/subhacom/nsdf",
packages=['nsdf', 'test'],
url="https://github.com/nsdf/nsdf",
packages=['nsdf', 'nsdf.test'],
long_description=read('README.md'),
classifiers=[
"Development Status :: 1 - Alpha",
Expand Down

0 comments on commit 9621ced

Please sign in to comment.