Mercurial > hg > silvermirror
view setup.py @ 17:f8edfc9c28ba
a really hacky way to disable...for temporary sanity and long term backing down from insanity
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Tue, 18 Jun 2013 15:58:35 -0700 |
parents | 76eac0c9953a |
children | 5c5edfb827b7 |
line wrap: on
line source
from setuptools import setup, find_packages version = '0.2' setup(name='silvermirror', version=version, description="mirror files across hosts", long_description="""\ """, classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers keywords='mirror unison', author='Jeff Hammel', author_email='k0scist@gmail.com', url='http://explosivedecompression.net', license='GPL', packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True, zip_safe=False, install_requires=[ 'martINI', 'netifaces', 'pexpect', ], entry_points=""" # -*- Entry points: -*- [console_scripts] silvermirror = silvermirror.unify:main mirror-hg = silvermirror.hg:main [silvermirror.reflectors] unison = silvermirror.unison:unison """, )