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
No related branches found
No related tags found
No related merge requests found
include cpmdparser/versions/cpmd41/input_data/cpmd_input_tree.pickle
\ No newline at end of file
include ./cpmdparser/versions/cpmd41/input_data/cpmd_input_tree.pickle
\ No newline at end of file
......@@ -17,14 +17,14 @@ from setuptools import setup, find_packages
def main():
setup(
name="cpmdparser",
version="0.1",
description="NOMAD parser implementation for CPMD.",
author="Lauri Himanen",
author_email="lauri.himanen@aalto.fi",
license="GPL3",
name='cpmdparser',
version='0.1',
description='NOMAD parser implementation for CPMD.',
author='Lauri Himanen',
author_email='lauri.himanen@aalto.fi',
license='GPL3',
package_dir={'': './'},
packages=find_packages(),
packages=['cpmdparser'],
include_package_data=True,
install_requires=[
'nomadcore',
......@@ -32,5 +32,5 @@ def main():
)
if __name__ == "__main__":
if __name__ == '__main__':
main()
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