mirror of
				https://github.com/arsenetar/send2trash.git
				synced 2025-09-11 18:08:16 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			943 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			943 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| import sys
 | |
| import os.path as op
 | |
| 
 | |
| from setuptools import setup
 | |
| 
 | |
| 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 :: 3',
 | |
|     'Topic :: Desktop Environment :: File Managers',
 | |
| ]
 | |
| 
 | |
| LONG_DESCRIPTION = open('README', 'rt').read() + '\n\n' + open('CHANGES', 'rt').read()
 | |
| 
 | |
| setup(
 | |
|     name='Send2Trash3k',
 | |
|     version='1.1.0',
 | |
|     author='Hardcoded Software',
 | |
|     author_email='hsoft@hardcoded.net',
 | |
|     packages=['send2trash'],
 | |
|     scripts=[],
 | |
|     url='http://hg.hardcoded.net/send2trash/',
 | |
|     license='BSD License',
 | |
|     description='Send file to trash natively under Mac OS X, Windows and Linux.',
 | |
|     long_description=LONG_DESCRIPTION,
 | |
|     classifiers=CLASSIFIERS,
 | |
|     zip_safe=False,
 | |
| ) |