comparison env/lib/python3.7/site-packages/pathlib2-2.3.5.dist-info/METADATA @ 5:9b1c78e6ba9c draft default tip

"planemo upload commit 6c0a8142489327ece472c84e558c47da711a9142"
author shellac
date Mon, 01 Jun 2020 08:59:25 -0400
parents 79f47841a781
children
comparison
equal deleted inserted replaced
4:79f47841a781 5:9b1c78e6ba9c
1 Metadata-Version: 2.0
2 Name: pathlib2
3 Version: 2.3.5
4 Summary: Object-oriented filesystem paths
5 Home-page: https://github.com/mcmtroffaes/pathlib2
6 Author: Matthias C. M. Troffaes
7 Author-email: matthias.troffaes@gmail.com
8 License: MIT
9 Platform: UNKNOWN
10 Classifier: Development Status :: 5 - Production/Stable
11 Classifier: Intended Audience :: Developers
12 Classifier: License :: OSI Approved :: MIT License
13 Classifier: Operating System :: OS Independent
14 Classifier: Programming Language :: Python
15 Classifier: Programming Language :: Python :: 2
16 Classifier: Programming Language :: Python :: 3
17 Classifier: Programming Language :: Python :: 2.6
18 Classifier: Programming Language :: Python :: 2.7
19 Classifier: Programming Language :: Python :: 3.4
20 Classifier: Programming Language :: Python :: 3.5
21 Classifier: Programming Language :: Python :: 3.6
22 Classifier: Programming Language :: Python :: 3.7
23 Classifier: Topic :: Software Development :: Libraries
24 Classifier: Topic :: System :: Filesystems
25 Requires-Dist: six
26 Requires-Dist: scandir; python_version<"3.5"
27
28 The `old pathlib <https://bitbucket.org/pitrou/pathlib>`_
29 module on bitbucket is in bugfix-only mode.
30 The goal of pathlib2 is to provide a backport of
31 `standard pathlib <http://docs.python.org/dev/library/pathlib.html>`_
32 module which tracks the standard library module,
33 so all the newest features of the standard pathlib can be
34 used also on older Python versions.
35
36 Download
37 --------
38
39 Standalone releases are available on PyPI:
40 http://pypi.python.org/pypi/pathlib2/
41
42 Development
43 -----------
44
45 The main development takes place in the Python standard library: see
46 the `Python developer's guide <http://docs.python.org/devguide/>`_.
47 In particular, new features should be submitted to the
48 `Python bug tracker <http://bugs.python.org/>`_.
49
50 Issues that occur in this backport, but that do not occur not in the
51 standard Python pathlib module can be submitted on
52 the `pathlib2 bug tracker <https://github.com/mcmtroffaes/pathlib2/issues>`_.
53
54 Documentation
55 -------------
56
57 Refer to the
58 `standard pathlib <http://docs.python.org/dev/library/pathlib.html>`_
59 documentation.
60
61 Known Issues
62 ------------
63
64 For historic reasons, pathlib2 still uses bytes to represent file paths internally.
65 Unfortunately, on Windows with Python 2.7, the file system encoder (``mcbs``)
66 has only poor support for non-ascii characters,
67 and can silently replace non-ascii characters without warning.
68 For example, ``u'ั‚ะตัั‚'.encode(sys.getfilesystemencoding())`` results in ``????``
69 which is obviously completely useless.
70
71 Therefore, on Windows with Python 2.7, until this problem is fixed upstream,
72 unfortunately you cannot rely on pathlib2 to support the full unicode range for filenames.
73 See `issue #56 <https://github.com/mcmtroffaes/pathlib2/issues/56>`_ for more details.
74
75 .. |travis| image:: https://travis-ci.org/mcmtroffaes/pathlib2.png?branch=develop
76 :target: https://travis-ci.org/mcmtroffaes/pathlib2
77 :alt: travis-ci
78
79 .. |appveyor| image:: https://ci.appveyor.com/api/projects/status/baddx3rpet2wyi2c?svg=true
80 :target: https://ci.appveyor.com/project/mcmtroffaes/pathlib2
81 :alt: appveyor
82
83 .. |codecov| image:: https://codecov.io/gh/mcmtroffaes/pathlib2/branch/develop/graph/badge.svg
84 :target: https://codecov.io/gh/mcmtroffaes/pathlib2
85 :alt: codecov
86
87
88