Skip to content
Snippets Groups Projects
Commit 91aa9d3a authored by Christoph Groth's avatar Christoph Groth
Browse files

fix contrib/__init__.py, add contrib to setup.py

parent ef50b005
No related branches found
Tags latest-1.1 v1.1.3
No related merge requests found
......@@ -6,5 +6,8 @@
# the AUTHORS file at the top-level directory of this distribution and at
# http://kwant-project.org/authors.
__all__ = ['rmt']
from . import rmt
"""This package contains various sub-packages that are useful with kwant, but
are not considered to be part of kwant.
The sub-packages have to be imported explicitly.
"""
......@@ -333,9 +333,10 @@ def main():
url="http://kwant-project.org/",
license="BSD",
packages=["kwant", "kwant.graph", "kwant.linalg", "kwant.physics",
"kwant.solvers", "kwant.tests", "kwant.graph.tests",
"kwant.linalg.tests", "kwant.physics.tests",
"kwant.solvers.tests"],
"kwant.solvers", "kwant.contrib",
"kwant.tests", "kwant.graph.tests", "kwant.linalg.tests",
"kwant.physics.tests", "kwant.solvers.tests",
"kwant.contrib.tests"],
cmdclass={'build': kwant_build,
'sdist': kwant_sdist,
'build_ext': kwant_build_ext,
......
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