From e0c5eef84d17c7c12a831742a56cb12a9937f392 Mon Sep 17 00:00:00 2001 From: harshadyeola Date: Fri, 12 Dec 2014 15:42:54 +0530 Subject: [PATCH] added python3-apt pystache in setup.py --- setup.py | 67 +++++++++++++++++++++++++++++++------------------------- 1 file changed, 37 insertions(+), 30 deletions(-) diff --git a/setup.py b/setup.py index 99863cdd..df196b60 100644 --- a/setup.py +++ b/setup.py @@ -1,34 +1,41 @@ from setuptools import setup, find_packages -import sys, os +import sys +import os + setup(name='ee', - version='3.0', - description="EasyEngine is the commandline tool to manage your Websites based on WordPress and NGINX with easy to use commands.", - long_description="EasyEngine is the commandline tool to manage your Websites based on WordPress and NGINX with easy to use commands.", - classifiers=[], - keywords='', - author='rtCamp Soultions Pvt. LTD', - author_email='sys@rtcamp.com', - url='http://rtcamp.com/easyengine', - license='GPL', - packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), - include_package_data=True, - zip_safe=False, - test_suite='nose.collector', - install_requires=[ - ### Required to build documentation - # "Sphinx >= 1.0", - ### Required for testing - # "nose", - # "coverage", - ### Required to function - 'cement', - ], - setup_requires=[], - entry_points=""" - [console_scripts] - ee = ee.cli.main:main - """, - namespace_packages=[], - ) + version='3.0', + description="EasyEngine is the commandline tool to manage your Websites" + " based on WordPress and NGINX with easy to use commands.", + long_description="EasyEngine is the commandline tool to manage your " + "Websites based on WordPress and NGINX with easy" + " to use commands.", + classifiers=[], + keywords='', + author='rtCamp Soultions Pvt. LTD', + author_email='sys@rtcamp.com', + url='http://rtcamp.com/easyengine', + license='GPL', + packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), + include_package_data=True, + zip_safe=False, + test_suite='nose.collector', + install_requires=[ + # Required to build documentation + # "Sphinx >= 1.0", + # Required for testing + # "nose", + # "coverage", + # Required to function + 'cement>=2.4', + 'pystache' + 'python3-apt' + ], + setup_requires=[], + entry_points=""" + [console_scripts] + ee = ee.cli.main:main + """, + namespace_packages=[], + )