Prompt48 commited on
Commit
246f759
·
verified ·
1 Parent(s): c7d8f13

Upload edit\Qwen3-TTS-test\.venv\Lib\site-packages\joblib-1.5.3.dist-info\METADATA with huggingface_hub

Browse files
edit//Qwen3-TTS-test//.venv//Lib//site-packages//joblib-1.5.3.dist-info//METADATA ADDED
@@ -0,0 +1,172 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Metadata-Version: 2.4
2
+ Name: joblib
3
+ Version: 1.5.3
4
+ Summary: Lightweight pipelining with Python functions
5
+ Author-email: Gael Varoquaux <gael.varoquaux@normalesup.org>
6
+ License-Expression: BSD-3-Clause
7
+ Project-URL: Homepage, https://joblib.readthedocs.io
8
+ Project-URL: Source, https://github.com/joblib/joblib
9
+ Platform: any
10
+ Classifier: Development Status :: 5 - Production/Stable
11
+ Classifier: Environment :: Console
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Intended Audience :: Science/Research
14
+ Classifier: Intended Audience :: Education
15
+ Classifier: Operating System :: OS Independent
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Programming Language :: Python :: 3.9
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Programming Language :: Python :: 3.13
22
+ Classifier: Topic :: Scientific/Engineering
23
+ Classifier: Topic :: Utilities
24
+ Classifier: Topic :: Software Development :: Libraries
25
+ Requires-Python: >=3.9
26
+ Description-Content-Type: text/x-rst
27
+ License-File: LICENSE.txt
28
+ Dynamic: license-file
29
+
30
+ |PyPi| |CIStatus| |ReadTheDocs| |Codecov|
31
+
32
+ .. |PyPi| image:: https://badge.fury.io/py/joblib.svg
33
+ :target: https://badge.fury.io/py/joblib
34
+ :alt: Joblib version
35
+
36
+ .. |CIStatus| image:: https://github.com/joblib/joblib/actions/workflows/test.yml/badge.svg
37
+ :target: https://github.com/joblib/joblib/actions/workflows/test.yml?query=branch%3Amain
38
+ :alt: CI status
39
+
40
+ .. |ReadTheDocs| image:: https://readthedocs.org/projects/joblib/badge/?version=latest
41
+ :target: https://joblib.readthedocs.io/en/latest/?badge=latest
42
+ :alt: Documentation Status
43
+
44
+ .. |Codecov| image:: https://codecov.io/gh/joblib/joblib/branch/main/graph/badge.svg
45
+ :target: https://codecov.io/gh/joblib/joblib
46
+ :alt: Codecov coverage
47
+
48
+
49
+ The homepage of joblib with user documentation is located on:
50
+
51
+ https://joblib.readthedocs.io
52
+
53
+ Getting the latest code
54
+ =======================
55
+
56
+ To get the latest code using git, simply type::
57
+
58
+ git clone https://github.com/joblib/joblib.git
59
+
60
+ If you don't have git installed, you can download a zip
61
+ of the latest code: https://github.com/joblib/joblib/archive/refs/heads/main.zip
62
+
63
+ Installing
64
+ ==========
65
+
66
+ You can use `pip` to install joblib from any directory::
67
+
68
+ pip install joblib
69
+
70
+ or install it in editable mode from the source directory::
71
+
72
+ pip install -e .
73
+
74
+ Dependencies
75
+ ============
76
+
77
+ - Joblib has no mandatory dependencies besides Python (supported versions are
78
+ 3.9+).
79
+ - Joblib has an optional dependency on Numpy (at least version 1.6.1) for array
80
+ manipulation.
81
+ - Joblib includes its own vendored copy of
82
+ `loky <https://github.com/tomMoral/loky>`_ for process management.
83
+ - Joblib can efficiently dump and load numpy arrays but does not require numpy
84
+ to be installed.
85
+ - Joblib has an optional dependency on
86
+ `python-lz4 <https://pypi.python.org/pypi/lz4>`_ as a faster alternative to
87
+ zlib and gzip for compressed serialization.
88
+ - Joblib has an optional dependency on psutil to mitigate memory leaks in
89
+ parallel worker processes.
90
+ - Some examples require external dependencies such as pandas. See the
91
+ instructions in the `Building the docs`_ section for details.
92
+
93
+ Workflow to contribute
94
+ ======================
95
+
96
+ To contribute to joblib, first create an account on `github
97
+ <https://github.com/>`_. Once this is done, fork the `joblib repository
98
+ <https://github.com/joblib/joblib>`_ to have your own repository,
99
+ clone it using ``git clone``. Make your changes in a branch of your clone, push
100
+ them to your github account, test them locally, and when you are happy with
101
+ them, send a pull request to the main repository.
102
+
103
+ You can use `pre-commit <https://pre-commit.com/#install>`_ to run code style checks
104
+ before each commit::
105
+
106
+ pip install pre-commit
107
+ pre-commit install
108
+
109
+ pre-commit checks can be disabled for a single commit with::
110
+
111
+ git commit -n
112
+
113
+ Running the test suite
114
+ ======================
115
+
116
+ To run the test suite, you need the pytest (version >= 3) and coverage modules.
117
+ Run the test suite using::
118
+
119
+ pytest joblib
120
+
121
+ from the root of the project.
122
+
123
+ Building the docs
124
+ =================
125
+
126
+ To build the docs you need to have sphinx (>=1.4) and some dependencies
127
+ installed::
128
+
129
+ pip install -U -r .readthedocs-requirements.txt
130
+
131
+ The docs can then be built with the following command::
132
+
133
+ make doc
134
+
135
+ The html docs are located in the ``doc/_build/html`` directory.
136
+
137
+
138
+ Making a source tarball
139
+ =======================
140
+
141
+ To create a source tarball, eg for packaging or distributing, run the
142
+ following command::
143
+
144
+ pip install build
145
+ python -m build --sdist
146
+
147
+ The tarball will be created in the `dist` directory. This command will create
148
+ the resulting tarball that can be installed with no extra dependencies than the
149
+ Python standard library.
150
+
151
+ Making a release and uploading it to PyPI
152
+ =========================================
153
+
154
+ This command is only run by project manager, to make a release, and
155
+ upload in to PyPI::
156
+
157
+ pip install build
158
+ python -m build --sdist --wheel
159
+ twine upload dist/*
160
+
161
+
162
+ Note that the documentation should automatically get updated at each git
163
+ push. If that is not the case, try building th doc locally and resolve
164
+ any doc build error (in particular when running the examples).
165
+
166
+ Updating the changelog
167
+ ======================
168
+
169
+ Changes are listed in the CHANGES.rst file. They must be manually updated
170
+ but, the following git command may be used to generate the lines::
171
+
172
+ git log --abbrev-commit --date=short --no-merges --sparse