Browse Source

added python3-apt pystache in setup.py

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

67
setup.py

@ -1,34 +1,41 @@
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.",
classifiers=[], long_description="EasyEngine is the commandline tool to manage your "
keywords='', "Websites based on WordPress and NGINX with easy"
author='rtCamp Soultions Pvt. LTD', " to use commands.",
author_email='sys@rtcamp.com', classifiers=[],
url='http://rtcamp.com/easyengine', keywords='',
license='GPL', author='rtCamp Soultions Pvt. LTD',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), author_email='sys@rtcamp.com',
include_package_data=True, url='http://rtcamp.com/easyengine',
zip_safe=False, license='GPL',
test_suite='nose.collector', packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
install_requires=[ include_package_data=True,
### Required to build documentation zip_safe=False,
# "Sphinx >= 1.0", test_suite='nose.collector',
### Required for testing install_requires=[
# "nose", # Required to build documentation
# "coverage", # "Sphinx >= 1.0",
### Required to function # Required for testing
'cement', # "nose",
], # "coverage",
setup_requires=[], # Required to function
entry_points=""" 'cement>=2.4',
[console_scripts] 'pystache'
ee = ee.cli.main:main 'python3-apt'
""", ],
namespace_packages=[], setup_requires=[],
) entry_points="""
[console_scripts]
ee = ee.cli.main:main
""",
namespace_packages=[],
)

Loading…
Cancel
Save