3 changed files with 3 additions and 35 deletions
@ -1,19 +0,0 @@ |
|||||
Linktastic |
|
||||
|
|
||||
Linktastic is an extension of the os.link and os.symlink functionality provided |
|
||||
by the python language since version 2. Python only supports file linking on |
|
||||
*NIX-based systems, even though it is relatively simple to engineer a solution |
|
||||
to utilize NTFS's built-in linking functionality. Linktastic attempts to unify |
|
||||
linking on the windows platform with linking on *NIX-based systems. |
|
||||
|
|
||||
Usage |
|
||||
|
|
||||
Linktastic is a single python module and can be imported as such. Examples: |
|
||||
|
|
||||
# Hard linking src to dest |
|
||||
import linktastic |
|
||||
linktastic.link(src, dest) |
|
||||
|
|
||||
# Symlinking src to dest |
|
||||
import linktastic |
|
||||
linktastic.symlink(src, dest) |
|
@ -1,13 +0,0 @@ |
|||||
from distutils.core import setup |
|
||||
|
|
||||
setup( |
|
||||
name='Linktastic', |
|
||||
version='0.1.0', |
|
||||
author='Jon "Berkona" Monroe', |
|
||||
author_email='solipsis.dev@gmail.com', |
|
||||
py_modules=['linktastic'], |
|
||||
url="http://github.com/berkona/linktastic", |
|
||||
license='MIT License - See http://opensource.org/licenses/MIT for details', |
|
||||
description='Truly platform-independent file linking', |
|
||||
long_description=open('README.txt').read(), |
|
||||
) |
|
Loading…
Reference in new issue