mirror of
https://github.com/arsenetar/send2trash.git
synced 2025-05-08 01:39:51 +00:00
v1.3.1
This commit is contained in:
parent
f6f63b1796
commit
bd9183afe9
@ -1,6 +1,12 @@
|
|||||||
Changes
|
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
|
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
|
Version 1.0.0 -- 2010/04/07
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
* Initial Release
|
* Initial Release
|
||||||
|
11
setup.py
11
setup.py
@ -1,6 +1,3 @@
|
|||||||
import sys
|
|
||||||
import os.path as op
|
|
||||||
|
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
CLASSIFIERS = [
|
CLASSIFIERS = [
|
||||||
@ -19,14 +16,14 @@ LONG_DESCRIPTION = open('README.rst', 'rt').read() + '\n\n' + open('CHANGES.rst'
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='Send2Trash',
|
name='Send2Trash',
|
||||||
version='1.3.0',
|
version='1.3.1',
|
||||||
author='Hardcoded Software',
|
author='Virgil Dupras',
|
||||||
author_email='hsoft@hardcoded.net',
|
author_email='hsoft@hardcoded.net',
|
||||||
packages=['send2trash'],
|
packages=['send2trash'],
|
||||||
scripts=[],
|
scripts=[],
|
||||||
url='http://github.com/hsoft/send2trash',
|
url='https://github.com/hsoft/send2trash',
|
||||||
license='BSD License',
|
license='BSD License',
|
||||||
description='Send file to trash natively under Mac OS X, Windows and Linux.',
|
description='Send file to trash natively under Mac OS X, Windows and Linux.',
|
||||||
long_description=LONG_DESCRIPTION,
|
long_description=LONG_DESCRIPTION,
|
||||||
classifiers=CLASSIFIERS,
|
classifiers=CLASSIFIERS,
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user