Skip to content
Snippets Groups Projects
Commit 8ada1eb9 authored by Daniel Speckhard's avatar Daniel Speckhard
Browse files

Fixed directory naming error in MANIFEST.in file.

parent 836c3083
Branches
Tags
No related merge requests found
include cpmdparser/versions/cpmd41/input_data/cpmd_input_tree.pickle include ./cpmdparser/versions/cpmd41/input_data/cpmd_input_tree.pickle
\ No newline at end of file \ No newline at end of file
...@@ -17,14 +17,14 @@ from setuptools import setup, find_packages ...@@ -17,14 +17,14 @@ from setuptools import setup, find_packages
def main(): def main():
setup( setup(
name="cpmdparser", name='cpmdparser',
version="0.1", version='0.1',
description="NOMAD parser implementation for CPMD.", description='NOMAD parser implementation for CPMD.',
author="Lauri Himanen", author='Lauri Himanen',
author_email="lauri.himanen@aalto.fi", author_email='lauri.himanen@aalto.fi',
license="GPL3", license='GPL3',
package_dir={'': './'}, package_dir={'': './'},
packages=find_packages(), packages=['cpmdparser'],
include_package_data=True, include_package_data=True,
install_requires=[ install_requires=[
'nomadcore', 'nomadcore',
...@@ -32,5 +32,5 @@ def main(): ...@@ -32,5 +32,5 @@ def main():
) )
if __name__ == "__main__": if __name__ == '__main__':
main() main()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment