From 58d45d16f6d837bce490ac151bbbbba91c0b452d Mon Sep 17 00:00:00 2001 From: Markus Scheidgen <markus.scheidgen@gmail.com> Date: Tue, 8 Oct 2019 16:32:03 +0200 Subject: [PATCH] Enhanced standalone usage. --- setup.py | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 219289f..11480a6 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,29 @@ def main(): 'nomadcore.unit_conversion': ['*.txt'], 'nomadcore.md_data_access': ['test/*'], 'nomadcore.metainfo_storage': ['*.txt'], - } + }, + install_requires=[ + "future", + "numpy", + "cython", + "Pint==0.7.2", + "ase==3.15.0", + "setuptools", + "scipy", + + "panedr==0.2", + "parmed==3.0.0", + "pandas", + "pyyaml", + "h5py", + "hjson", + "enum34"], + extras_require={ + "md": [ + "mdtraj==1.9.1", + "mdanalysis==0.16.2" + ] + }, ) # Run main function by default -- GitLab