METADATA 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. Metadata-Version: 2.1
  2. Name: win32_setctime
  3. Version: 1.2.0
  4. Summary: A small Python utility to set file creation time on Windows
  5. Home-page: https://github.com/Delgan/win32-setctime
  6. Download-URL: https://github.com/Delgan/win32-setctime/archive/1.2.0.tar.gz
  7. Author: Delgan
  8. Author-email: delgan.py@gmail.com
  9. License: MIT license
  10. Keywords: win32,windows,filesystem,filetime
  11. Classifier: Development Status :: 5 - Production/Stable
  12. Classifier: Topic :: System :: Filesystems
  13. Classifier: Intended Audience :: Developers
  14. Classifier: Environment :: Win32 (MS Windows)
  15. Classifier: Natural Language :: English
  16. Classifier: License :: OSI Approved :: MIT License
  17. Classifier: Operating System :: Microsoft
  18. Classifier: Programming Language :: Python
  19. Classifier: Programming Language :: Python :: 3
  20. Classifier: Programming Language :: Python :: 3.5
  21. Classifier: Programming Language :: Python :: 3.6
  22. Classifier: Programming Language :: Python :: 3.7
  23. Classifier: Programming Language :: Python :: 3.8
  24. Classifier: Programming Language :: Python :: 3.9
  25. Classifier: Programming Language :: Python :: 3.10
  26. Classifier: Programming Language :: Python :: 3.11
  27. Classifier: Programming Language :: Python :: 3.12
  28. Classifier: Programming Language :: Python :: 3.13
  29. Classifier: Programming Language :: Python :: 3 :: Only
  30. Classifier: Programming Language :: Python :: Implementation :: CPython
  31. Requires-Python: >=3.5
  32. Description-Content-Type: text/markdown
  33. License-File: LICENSE
  34. Provides-Extra: dev
  35. Requires-Dist: black>=19.3b0; python_version >= "3.6" and extra == "dev"
  36. Requires-Dist: pytest>=4.6.2; extra == "dev"
  37. # win32-setctime
  38. [![Pypi version](https://img.shields.io/pypi/v/win32-setctime.svg)](https://pypi.python.org/pypi/win32-setctime) [![Python version](https://img.shields.io/badge/python-3.5%2B-blue.svg)](https://pypi.python.org/pypi/win32-setctime) [![Build status](https://img.shields.io/github/actions/workflow/status/Delgan/win32-setctime/tests.yml?branch=master)](https://github.com/Delgan/win32-setctime/actions/workflows/tests.yml?query=branch:master) [![License](https://img.shields.io/github/license/delgan/win32-setctime.svg)](https://github.com/Delgan/win32-setctime/blob/master/LICENSE)
  39. A small Python utility to set file creation time on Windows.
  40. ## Installation
  41. ```shell
  42. pip install win32-setctime
  43. ```
  44. ## Usage
  45. ```python
  46. from win32_setctime import setctime
  47. setctime("my_file.txt", 1561675987.509, follow_symlinks=True)
  48. ```