fix profile switching
[stack/code/dboxswitch.git] / setup.py
1 #!/usr/bin/env python
2
3 from setuptools import setup
4
5 setup(
6     name='dboxswitch',
7     version='0.9',
8     description='Create and switch between dropbox profiles easily',
9     author='stack',
10     author_email='stack@inventati.org',
11     url='http://v.licheni.net/stack/code/dboxswitch',
12     packages=['dboxswitch'],
13     package_data={'dboxswitch': ['icons/*.png']},
14     license='LICENSE.txt',
15     long_description=open('README.txt').read(),
16     install_requires=[
17         "distribute",
18     ],
19     entry_points={
20         "console_scripts": [
21             "dboxswitch = dboxswitch.__main__:main",
22             ],
23     },
24 )