1
0
mirror of https://github.com/arsenetar/send2trash.git synced 2024-12-03 19:59:02 +00:00
send2trash/setup.py

31 lines
961 B
Python
Raw Normal View History

from setuptools import setup
2010-04-06 06:58:56 +00:00
2010-07-07 09:59:11 +00:00
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.7',
'Programming Language :: Python :: 3',
2010-07-07 09:59:11 +00:00
'Topic :: Desktop Environment :: File Managers',
]
LONG_DESCRIPTION = open('README.rst', 'rt').read() + '\n\n' + open('CHANGES.rst', 'rt').read()
2010-10-18 10:13:37 +00:00
2010-04-06 06:58:56 +00:00
setup(
name='Send2Trash',
2017-07-31 18:19:58 +00:00
version='1.3.1',
author='Virgil Dupras',
2010-04-06 06:58:56 +00:00
author_email='hsoft@hardcoded.net',
packages=['send2trash'],
scripts=[],
2017-08-04 00:31:39 +00:00
test_suite='tests',
2017-07-31 18:19:58 +00:00
url='https://github.com/hsoft/send2trash',
2010-07-07 09:59:11 +00:00
license='BSD License',
2010-04-06 06:58:56 +00:00
description='Send file to trash natively under Mac OS X, Windows and Linux.',
2010-10-18 10:13:37 +00:00
long_description=LONG_DESCRIPTION,
2010-07-07 09:59:11 +00:00
classifiers=CLASSIFIERS,
2017-07-31 18:19:58 +00:00
)