Skip to content
Snippets Groups Projects
Commit 5445946c authored by Dominic Kempf's avatar Dominic Kempf
Browse files

[bugfix] Fix non-editable installations

... by listing all packages manually in setup.py
parent 1bf40e76
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,16 @@ setup(name='dune.perftool',
description='Performance optimizing form compiler for dune-pdelab',
author='Dominic Kempf <dominic.kempf@iwr.uni-heidelberg.de>',
url='http://conan2.iwr.uni-heidelberg.de/git/dominic/dune-perftool',
packages=['dune.perftool'],
packages=['dune.perftool',
'dune.perftool.cgen',
'dune.perftool.generation',
'dune.perftool.loopy',
'dune.perftool.loopy.transformations',
'dune.perftool.pdelab',
'dune.perftool.sumfact',
'dune.perftool.ufl',
'dune.perftool.ufl.transformations',
],
install_requires=['dune.testtools', 'sympy'],
tests_require=['pytest'],
cmdclass={'test': PyTest},
......
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