From 327a8ab757cf4c3489046c3b49aa2ab152f54137 Mon Sep 17 00:00:00 2001 From: Martin Diehl Date: Sun, 28 Apr 2019 12:04:11 +0200 Subject: [PATCH] more details --- python/setup.py | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/python/setup.py b/python/setup.py index e49872354..515401c59 100644 --- a/python/setup.py +++ b/python/setup.py @@ -9,15 +9,20 @@ setuptools.setup( version=version, author="The DAMASK team", author_email="damask@mpie.de", - description="Python library for DAMASK", - long_description='test', - #long_description_content_type="text/markdown", + description="DAMASK library", + long_description="Python library for pre and post processing of DAMASK simulations", url="https://damask.mpie.de", packages=setuptools.find_packages(), include_package_data=True, - classifiers=[ + install_requires = [ + "scipy", + "h5py", + "vtk" + ], + license = 'GPL3', + classifiers = [ "Programming Language :: Python :: 3", - "License :: OSI Approved :: GLPv3", + "License :: OSI Approved :: GPL3", "Operating System :: OS Independent", ], )