From 00a1d60fabff998cdb66b9ecf2da3c9e39ba0033 Mon Sep 17 00:00:00 2001 From: Lauri Himanen <lauri.himanen@aalto.fi> Date: Thu, 19 Oct 2017 14:28:16 +0300 Subject: [PATCH] Simplified setup.py. --- setup.py | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/setup.py b/setup.py index ff76355..198a018 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() -- GitLab