Metadata-Version: 2.4
Name: ntfsutils
Version: 0.1.5
Summary: A Python module to manipulate NTFS hard links and junctions.
Home-page: https://github.com/sunshowers-code/py-ntfs
Author: Rain
Author-email: rain@sunshowers.io
License: BSD
Keywords: windows ntfs hardlink junction
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
License-File: LICENSE
License-File: NOTICE.txt
Requires-Dist: setuptools
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: summary

Detailed Documentation
**********************

ntfsutils
=========

A Python module to manipulate NTFS `hard links`_ and `junctions`_.

Requirements
------------

Python 3.2+, or 2.7, on Windows. No further dependencies, since we use `ctypes`_
to interact with Win32.

This is a pure Python module.

License
-------

(c) 2012 the Mozilla Foundation and others, licensed under the Simplified BSD License.
See the LICENSE file for details.

.. _hard links: https://en.wikipedia.org/wiki/Hard_link
.. _junctions: https://en.wikipedia.org/wiki/NTFS_junction_point
.. _ctypes: http://docs.python.org/library/ctypes.html

Change history
**************

0.1.5 (2022-01-10)
==================

- Remove use_2to3 option from setup.py, no longer supported by setuptools
  (and also unnecessary).
  [srand]

0.1.4 (2018-03-21)
==================

- Add getdirinfo to get information for a directory at a given path.
  [efiop]

0.1.3 (2014-04-13)
==================

- Don't use custom descriptions for WinError.
  [sunshowers]

0.1.2 (2013-01-25)
==================

- Call CloseHandle after GetFileInformationByHandle.
  [barryp]
- Add missing LICENSE file to manifest.
  [pombredanne]

0.1.1 (2012-04-20)
==================

- Fixed an issue with creating hardlinks.
  [sunshowers]

0.1 (2012-04-20)
================

- Initial release.
  [rlacko]

Contributors
************

- Rain [sunshowers]
- Roman Lacko [rlacko]
- Barry Pederson [barryp]
- Philippe Ombredanne [pombredanne]
- Robert [srand]
