From 4c52530f371fd9e61182fd885ae76d0c9f193a4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20T=2E=20Jochym?= Date: Thu, 22 May 2014 01:25:16 +0200 Subject: [PATCH] Added dependencies to setup.py. --- setup.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 4ca0fad..97c766f 100644 --- a/setup.py +++ b/setup.py @@ -4,14 +4,15 @@ setup( name='qeutil', - version='0.1.15', - packages=['qeutil',], + version='0.1.16', + packages=['qeutil'], license='GPLv3', description = 'A set of utilities for Quantum Espresso', author = 'Paweł T. Jochym', author_email = 'Pawel.Jochym@ifj.edu.pl', - url = 'https://github.com/jochym/qe-util', # use the URL to the github repo - download_url = 'https://github.com/jochym/qe-util/tarball/0.1.10', # I'll explain this in a second - keywords = ['science', 'physics', 'quantum-espresso'], # arbitrary keywords + url = 'https://github.com/jochym/qe-util', + download_url = 'https://github.com/jochym/qe-util/', + keywords = ['science', 'physics', 'quantum-espresso'], + requires = ['ase','numpy','scipy','pyspglib'], classifiers = [], )