diff --git a/setup.py b/setup.py index ff76355dc746f1088aab71f87c0aedd60688fc03..198a0189edb3df1ed3152bfc3281fbd0b48fda16 100644 --- a/setup.py +++ b/setup.py @@ -1,28 +1,20 @@ -""" -This is a setup script for installing the parser locally on python path with -all the required dependencies. Used mainly for local testing. -""" from setuptools import setup, find_packages -#=============================================================================== def main(): - # Start package setup setup( name="cpmdparser", version="0.1", - description="NoMaD parser implementation for CPMD.", + description="NOMAD parser implementation for CPMD.", author="Lauri Himanen", author_email="lauri.himanen@aalto.fi", license="GPL3", package_dir={'': 'parser/parser-cpmd'}, packages=find_packages(), install_requires=[ - 'pint', - 'numpy', + 'nomadcore', ], ) -# Run main function by default if __name__ == "__main__": main()