diff --git a/.hgignore b/.hgignore index 17c74b6..c2441aa 100644 --- a/.hgignore +++ b/.hgignore @@ -1,5 +1,7 @@ syntax: glob *.pyc +*.egg-info build +dist .DS_Store \ No newline at end of file diff --git a/setup.py b/setup.py index 8953b67..18740b8 100644 --- a/setup.py +++ b/setup.py @@ -19,6 +19,19 @@ if sys.platform == 'win32': extra_link_args = ['shell32.lib'], )) +CLASSIFIERS = [ + 'Development Status :: 5 - Production/Stable', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: BSD License', + 'Operating System :: MacOS :: MacOS X', + 'Operating System :: Microsoft :: Windows', + 'Operating System :: POSIX', + 'Programming Language :: Python :: 2', + 'Programming Language :: Objective C', + 'Programming Language :: C', + 'Topic :: Desktop Environment :: File Managers', +] + setup( name='Send2Trash', version='1.0.1', @@ -28,8 +41,9 @@ setup( scripts=[], ext_modules = exts, url='http://hg.hardcoded.net/send2trash/', - license='LICENSE', + license='BSD License', description='Send file to trash natively under Mac OS X, Windows and Linux.', long_description=open('README').read(), + classifiers=CLASSIFIERS, zip_safe=False, ) \ No newline at end of file