1
0
mirror of https://github.com/arsenetar/send2trash.git synced 2026-01-31 10:51:38 +00:00
--HG--
branch : py3k
This commit is contained in:
Virgil Dupras
2010-10-18 12:13:37 +02:00
parent 899a3efeb3
commit 506e48b2e0
3 changed files with 18 additions and 12 deletions

View File

@@ -16,9 +16,11 @@ CLASSIFIERS = [
'Topic :: Desktop Environment :: File Managers',
]
LONG_DESCRIPTION = open('README', 'rt').read() + '\n\n' + open('CHANGES', 'rt').read()
setup(
name='Send2Trash3k',
version='1.0.2',
version='1.1.0',
author='Hardcoded Software',
author_email='hsoft@hardcoded.net',
packages=['send2trash'],
@@ -26,7 +28,7 @@ setup(
url='http://hg.hardcoded.net/send2trash/',
license='BSD License',
description='Send file to trash natively under Mac OS X, Windows and Linux.',
long_description=open('README').read(),
long_description=LONG_DESCRIPTION,
classifiers=CLASSIFIERS,
zip_safe=False,
)