Mercurial > mozilla > hg > ProfileManager
view setup.py @ 75:a63dd19807c8
* actually write the file
* dont fatally err if a backup isnt actually there
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Fri, 07 May 2010 17:20:13 -0700 |
parents | 1cd3e3c71bff |
children | 553f5783999f |
line wrap: on
line source
from setuptools import setup, find_packages import sys, os version = '0.0' 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 """, )