send2trash/setup.py

25 lines
599 B
Python
Raw Normal View History

2010-04-06 01:58:56 -05:00
import os.path as op
from distutils.core import setup
from distutils.extension import Extension
exts = []
exts.append(Extension(
'_trash_osx',
[op.join('modules', 'trash_osx.c')],
extra_link_args=['-framework', 'CoreServices'],
))
setup(
name='Send2Trash',
version='1.0.0',
author='Hardcoded Software',
author_email='hsoft@hardcoded.net',
packages=['send2trash'],
scripts=[],
ext_modules = exts,
url='http://www.hardcoded.net/docs/send2trash/',
license='LICENSE',
description='Send file to trash natively under Mac OS X, Windows and Linux.',
)