Mercurial > hg > silvermirror
diff setup.py @ 0:abb358e2434c
initial commit of silvermirror, from http://my-svn.assembla.com/svn/arbez/silvermirror
author | k0s <k0scist@gmail.com> |
---|---|
date | Mon, 07 Sep 2009 15:39:06 -0400 |
parents | |
children | 9b139702a8f9 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/setup.py Mon Sep 07 15:39:06 2009 -0400 @@ -0,0 +1,32 @@ +from setuptools import setup, find_packages + +version = '0.0' + +setup(name='silvermirror', + version=version, + description="mirror files", + 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=[ + # -*- Extra requirements: -*- + 'martINI', + 'netifaces' + ], + dependency_links=[ + 'https://svn.openplans.org/svn/standalone/martINI#egg=martINI', + ], + entry_points=""" + # -*- Entry points: -*- + [console_scripts] + silvermirror = silvermirror.unify:unify + """, + )