1
0
mirror of https://github.com/arsenetar/send2trash.git synced 2026-02-10 23:01:38 +00:00

Licensed under BSD.

This commit is contained in:
Virgil Dupras
2010-04-07 08:52:24 +02:00
parent ae126c47bf
commit 203973d66c
7 changed files with 48 additions and 0 deletions

View File

@@ -1,3 +1,9 @@
# Copyright 2010 Hardcoded Software (http://www.hardcoded.net)
# This software is licensed under the "BSD" License as described in the "LICENSE" file,
# which should be included with this package. The terms are also available at
# http://www.hardcoded.net/licenses/bsd_license
import sys
if sys.platform == 'darwin':

View File

@@ -1,3 +1,9 @@
# Copyright 2010 Hardcoded Software (http://www.hardcoded.net)
# This software is licensed under the "BSD" License as described in the "LICENSE" file,
# which should be included with this package. The terms are also available at
# http://www.hardcoded.net/licenses/bsd_license
import _send2trash_osx
def send2trash(path):

View File

@@ -2,6 +2,12 @@ from __future__ import unicode_literals
import sys
import os
import os.path as op
# Copyright 2010 Hardcoded Software (http://www.hardcoded.net)
# This software is licensed under the "BSD" License as described in the "LICENSE" file,
# which should be included with this package. The terms are also available at
# http://www.hardcoded.net/licenses/bsd_license
import logging
CANDIDATES = [

View File

@@ -1,3 +1,9 @@
# Copyright 2010 Hardcoded Software (http://www.hardcoded.net)
# This software is licensed under the "BSD" License as described in the "LICENSE" file,
# which should be included with this package. The terms are also available at
# http://www.hardcoded.net/licenses/bsd_license
import os.path as op
import _send2trash_win