Mercurial > mozilla > hg > ProfileManager
view setup.py @ 78:553f5783999f
give a version
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Fri, 07 May 2010 17:50:10 -0700 |
parents | 1cd3e3c71bff |
children | 145e111903d2 |
line wrap: on
line source
from setuptools import setup, find_packages import sys, os version = '0.1' setup(name='ProfileManager', version=version, description='profile manager for Firefox and other Mozilla products', long_description="""\ """, classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers keywords='', author='Jeff Hammel', author_email='jhammel@mozilla.com', url='', license='MPL', packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True, zip_safe=False, install_requires=[ # -*- Extra requirements: -*- 'python-dateutil' ], entry_points=""" # -*- Entry points: -*- [console_scripts] profile-manager = profilemanager.main:main """, )