Browse Source

added python3-apt pystache in setup.py

bugfixes
harshadyeola 10 years ago
parent
commit
e0c5eef84d
  1. 21
      setup.py

21
setup.py

@ -1,11 +1,16 @@
from setuptools import setup, find_packages from setuptools import setup, find_packages
import sys, os import sys
import os
setup(name='ee', setup(name='ee',
version='3.0', version='3.0',
description="EasyEngine is the commandline tool to manage your Websites based on WordPress and NGINX with easy to use commands.", description="EasyEngine is the commandline tool to manage your Websites"
long_description="EasyEngine is the commandline tool to manage your Websites based on WordPress and NGINX with easy to use commands.", " 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=[], classifiers=[],
keywords='', keywords='',
author='rtCamp Soultions Pvt. LTD', author='rtCamp Soultions Pvt. LTD',
@ -17,13 +22,15 @@ setup(name='ee',
zip_safe=False, zip_safe=False,
test_suite='nose.collector', test_suite='nose.collector',
install_requires=[ install_requires=[
### Required to build documentation # Required to build documentation
# "Sphinx >= 1.0", # "Sphinx >= 1.0",
### Required for testing # Required for testing
# "nose", # "nose",
# "coverage", # "coverage",
### Required to function # Required to function
'cement', 'cement>=2.4',
'pystache'
'python3-apt'
], ],
setup_requires=[], setup_requires=[],
entry_points=""" entry_points="""

Loading…
Cancel
Save