1
0
Форк 0
This commit is contained in:
Virgil Dupras 2017-07-31 14:19:58 -04:00
джерело f6f63b1796
коміт bd9183afe9
2 змінених файлів з 11 додано та 8 видалено

@ -1,6 +1,12 @@
Changes
=======
Version 1.3.1 -- 2017/07/31
---------------------------
* Throw ``WindowsError`` instead of ``OSError`` in ``plat_win``. (#7)
* Fix ``TypeError`` on python 2 in ``plat_other``. (#12)
Version 1.3.0 -- 2013/07/19
---------------------------
@ -30,4 +36,4 @@ Version 1.0.1 -- 2010/04/19
Version 1.0.0 -- 2010/04/07
---------------------------
* Initial Release
* Initial Release

@ -1,6 +1,3 @@
import sys
import os.path as op
from setuptools import setup
CLASSIFIERS = [
@ -19,14 +16,14 @@ LONG_DESCRIPTION = open('README.rst', 'rt').read() + '\n\n' + open('CHANGES.rst'
setup(
name='Send2Trash',
version='1.3.0',
author='Hardcoded Software',
version='1.3.1',
author='Virgil Dupras',
author_email='hsoft@hardcoded.net',
packages=['send2trash'],
scripts=[],
url='http://github.com/hsoft/send2trash',
url='https://github.com/hsoft/send2trash',
license='BSD License',
description='Send file to trash natively under Mac OS X, Windows and Linux.',
long_description=LONG_DESCRIPTION,
classifiers=CLASSIFIERS,
)
)