Mercurial > mozilla > hg > ProfileManager
view setup.py @ 10:c77e9bef78d6
* update list of public API functions
* further flushing out of profile manager
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Wed, 05 May 2010 17:08:47 -0700 |
parents | 979315ed0816 |
children | 1cd3e3c71bff |
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: -*- ], entry_points=""" # -*- Entry points: -*- [console_scripts] profile-manager = profilemanager.main:main """, )