Import tensorflow

This commit is contained in:
2026-02-15 21:45:42 -08:00
parent f3e8b90764
commit c530630153
20524 changed files with 9017694 additions and 25 deletions
@@ -0,0 +1,41 @@
Metadata-Version: 2.4
Name: gast
Version: 0.7.0
Summary: Python AST that abstracts the underlying Python version
Home-page: https://github.com/serge-sans-paille/gast/
Author: serge-sans-paille
Author-email: serge.guelton@telecom-bretagne.eu
License: BSD 3-Clause
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 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
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary
A generic AST to represent Python2 and Python3's Abstract Syntax Tree(AST).
GAST provides a compatibility layer between the AST of various Python versions,
as produced by ``ast.parse`` from the standard ``ast`` module.
@@ -0,0 +1,20 @@
gast-0.7.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
gast-0.7.0.dist-info/METADATA,sha256=uoMq7Rz99X2ekssEVwuSM5r0yt3Ezf8dVL62RP6Hx2o,1506
gast-0.7.0.dist-info/RECORD,,
gast-0.7.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
gast-0.7.0.dist-info/licenses/LICENSE,sha256=agS7q9m0i-pr98C9PzoGLhR2s8QDp0ZEj9abDZAuFI8,1490
gast-0.7.0.dist-info/top_level.txt,sha256=OZY5DvDNAf17-SMBR1pXPV7iJyIpR-6sFAgOfFc_Vz8,5
gast/__init__.py,sha256=qebTP3aM9LOaOeilaPxUlcP_PkcatAuS7_Q6uaLpsHQ,111
gast/__pycache__/__init__.cpython-311.pyc,,
gast/__pycache__/ast2.cpython-311.pyc,,
gast/__pycache__/ast3.cpython-311.pyc,,
gast/__pycache__/astn.cpython-311.pyc,,
gast/__pycache__/gast.cpython-311.pyc,,
gast/__pycache__/unparser.cpython-311.pyc,,
gast/__pycache__/version.cpython-311.pyc,,
gast/ast2.py,sha256=RP9OQ3D_cWmSyf36oWCQkbY2vfGhMVMbsQHXmbvu9nM,13446
gast/ast3.py,sha256=XwJBEWUiiW6Xr4knrs_n8EUiEivG7lWdQ39zvCw4gos,19060
gast/astn.py,sha256=zKiZOAonNC7pod36Wr7L3Itrzg8qMMDaJb1ccOzdovQ,1167
gast/gast.py,sha256=yinm0PMiOmjSyw5u_teHVOfG8V4lcHRmgu_xXIrr-g8,27709
gast/unparser.py,sha256=qur-FAAeYPy5h09lW_9mtt8JN56GwPuRAQzbil4P698,43121
gast/version.py,sha256=09hol5ovL6ArILJIJZ-MiscnOjKa6RjaETmtdgJpW2c,22
@@ -0,0 +1,5 @@
Wheel-Version: 1.0
Generator: setuptools (80.9.0)
Root-Is-Purelib: true
Tag: py3-none-any
@@ -0,0 +1,29 @@
Copyright (c) 2016, Serge Guelton
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
Neither the name of HPCProject, Serge Guelton nor the names of its
contributors may be used to endorse or promote products derived from this
software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.