From 28b4e5bcd2da4f5b70842d998d63e2139f09d3be Mon Sep 17 00:00:00 2001 From: Andrew Date: Mon, 14 Oct 2013 01:27:29 +0100 Subject: [PATCH] Added requirements to setup.py --- setup.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index bef7451..0ae6718 100755 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup from standings import __version__ - + setup(name="standings", version=__version__, description="EVE API Standings Page Generator", @@ -20,5 +20,11 @@ setup(name="standings", classifiers=[ 'License :: OSI Approved :: BSD License', 'Development Status :: 3 - Alpha', - ] + ], + install_requirements=[ + 'eveapi', + 'ordereddict', + 'jinja2', + 'argparse', + ], )