Mercurial > hg > silvermirror
comparison 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 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:abb358e2434c |
---|---|
1 from setuptools import setup, find_packages | |
2 | |
3 version = '0.0' | |
4 | |
5 setup(name='silvermirror', | |
6 version=version, | |
7 description="mirror files", | |
8 long_description="""\ | |
9 """, | |
10 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers | |
11 keywords='mirror unison', | |
12 author='Jeff Hammel', | |
13 author_email='k0scist@gmail.com', | |
14 url='http://explosivedecompression.net', | |
15 license='GPL', | |
16 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | |
17 include_package_data=True, | |
18 zip_safe=False, | |
19 install_requires=[ | |
20 # -*- Extra requirements: -*- | |
21 'martINI', | |
22 'netifaces' | |
23 ], | |
24 dependency_links=[ | |
25 'https://svn.openplans.org/svn/standalone/martINI#egg=martINI', | |
26 ], | |
27 entry_points=""" | |
28 # -*- Entry points: -*- | |
29 [console_scripts] | |
30 silvermirror = silvermirror.unify:unify | |
31 """, | |
32 ) |