Skip to content
Snippets Groups Projects
Commit 66f2f270 authored by Markus Scheidgen's avatar Markus Scheidgen
Browse files

Fixed setup.py to install submodules.

parent 7128e932
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from setuptools import setup
from setuptools import setup, find_packages
def main():
......@@ -24,7 +24,7 @@ def main():
author_email='lauri.himanen@aalto.fi',
license='GPL3',
package_dir={'': './'},
packages=['cpmdparser'],
packages=find_packages(),
include_package_data=True,
install_requires=[
'nomadcore',
......
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