X-Git-Url: https://v.licheni.net/stack/code/dboxswitch.git/blobdiff_plain/f7f331ca8166fd8b4a0c56f065d0021f954ee4c5..bf8352cb84782e000f2b7b831df5a9053d853548:/setup.py?ds=sidebyside diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..f2d5386 --- /dev/null +++ b/setup.py @@ -0,0 +1,24 @@ +#!/usr/bin/env python + +from setuptools import setup + +setup( + name='dboxswitch', + version='0.9', + description='Create and switch between dropbox profiles easily', + author='stack', + author_email='stack@inventati.org', + url='http://v.licheni.net/stack/code/dboxswitch', + packages=['dboxswitch'], + package_data={'dboxswitch': ['icons/*.png']}, + license='LICENSE.txt', + long_description=open('README.txt').read(), + install_requires=[ + "distribute", + ], + entry_points={ + "console_scripts": [ + "dboxswitch = dboxswitch.__main__:main", + ], + }, +)