2010-04-06 09:28:43 +00:00
|
|
|
import sys
|
2010-04-06 06:58:56 +00:00
|
|
|
import os.path as op
|
|
|
|
|
2010-04-06 16:04:32 +00:00
|
|
|
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',
|
2010-07-07 14:12:13 +00:00
|
|
|
'Programming Language :: Python :: 3',
|
2010-07-07 09:59:11 +00:00
|
|
|
'Topic :: Desktop Environment :: File Managers',
|
|
|
|
]
|
|
|
|
|
2010-10-18 10:13:37 +00:00
|
|
|
LONG_DESCRIPTION = open('README', 'rt').read() + '\n\n' + open('CHANGES', 'rt').read()
|
|
|
|
|
2010-04-06 06:58:56 +00:00
|
|
|
setup(
|
2010-07-07 14:12:13 +00:00
|
|
|
name='Send2Trash3k',
|
2010-10-18 10:13:37 +00:00
|
|
|
version='1.1.0',
|
2010-04-06 06:58:56 +00:00
|
|
|
author='Hardcoded Software',
|
|
|
|
author_email='hsoft@hardcoded.net',
|
|
|
|
packages=['send2trash'],
|
|
|
|
scripts=[],
|
2010-04-07 08:43:36 +00:00
|
|
|
url='http://hg.hardcoded.net/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,
|
2010-04-07 15:25:01 +00:00
|
|
|
zip_safe=False,
|
2010-04-06 06:58:56 +00:00
|
|
|
)
|