From a9fb612cf376b79badaaacc9ebbb727f50e8cc5a Mon Sep 17 00:00:00 2001 From: Lauri Himanen <lauri.himanen@aalto.fi> Date: Thu, 19 Oct 2017 14:29:41 +0300 Subject: [PATCH] Simplified setup.py. --- setup.py | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/setup.py b/setup.py index 0994ca9..729cdbd 100644 --- a/setup.py +++ b/setup.py @@ -1,29 +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="bigdftparser", version="0.1", - description="NoMaD parser implementation for BigDFT.", + description="NOMAD parser implementation for BigDFT.", author="Lauri Himanen", author_email="lauri.himanen@aalto.fi", license="GPL3", package_dir={'': 'parser/parser-big-dft'}, packages=find_packages(), install_requires=[ - 'pint', - 'numpy', 'nomadcore', ], ) -# Run main function by default if __name__ == "__main__": main() -- GitLab