view setup.py @ 65:1cd3e3c71bff

determine which backup to use from the given date
author Jeff Hammel <jhammel@mozilla.com>
date Fri, 07 May 2010 14:14:17 -0700
parents 979315ed0816
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
      """,
      )