reconnect moved files to git repo

This commit is contained in:
root
2025-08-01 04:33:03 -04:00
commit 5d3c35492d
23190 changed files with 4750716 additions and 0 deletions

View File

@ -0,0 +1 @@
pip

View File

@ -0,0 +1,81 @@
The bulk of Patsy is distributed under a simple 2-clause BSD license:
Copyright (C) 2011-2012, Patsy Developers. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. 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.
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.
The module patsy.compat contains code derived from the Python
standard library, and is covered by the following license:
PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
--------------------------------------------
1. This LICENSE AGREEMENT is between the Python Software Foundation
("PSF"), and the Individual or Organization ("Licensee") accessing and
otherwise using this software ("Python") in source or binary form and
its associated documentation.
2. Subject to the terms and conditions of this License Agreement, PSF hereby
grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,
analyze, test, perform and/or display publicly, prepare derivative works,
distribute, and otherwise use Python alone or in any derivative version,
provided, however, that PSF's License Agreement and PSF's notice of copyright,
i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
2011, 2012 Python Software Foundation; All Rights Reserved" are retained in Python
alone or in any derivative version prepared by Licensee.
3. In the event Licensee prepares a derivative work that is based on
or incorporates Python or any part thereof, and wants to make
the derivative work available to others as provided herein, then
Licensee hereby agrees to include in any such work a brief summary of
the changes made to Python.
4. PSF is making Python available to Licensee on an "AS IS"
basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND
DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT
INFRINGE ANY THIRD PARTY RIGHTS.
5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON,
OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
6. This License Agreement will automatically terminate upon a material
breach of its terms and conditions.
7. Nothing in this License Agreement shall be deemed to create any
relationship of agency, partnership, or joint venture between PSF and
Licensee. This License Agreement does not grant permission to use PSF
trademarks or trade name in a trademark sense to endorse or promote
products or services of Licensee, or any third party.
8. By copying, installing or otherwise using Python, Licensee
agrees to be bound by the terms and conditions of this License
Agreement.
As per item (3), we are required to provide a brief summary of
changes. For this, see comments in patsy/compat.py.

View File

@ -0,0 +1,79 @@
Metadata-Version: 2.1
Name: patsy
Version: 1.0.1
Summary: A Python package for describing statistical models and for building design matrices.
Home-page: https://github.com/pydata/patsy
Author: Nathaniel J. Smith
Author-email: njs@pobox.com
License: 2-clause BSD
Platform: UNKNOWN
Classifier: Development Status :: 6 - Mature
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
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
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Scientific/Engineering
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: numpy >=1.4
Provides-Extra: test
Requires-Dist: pytest ; extra == 'test'
Requires-Dist: pytest-cov ; extra == 'test'
Requires-Dist: scipy ; extra == 'test'
# Patsy
**Notice:** `patsy` is no longer under active development. As of August 2021,
Matthew Wardrop (@matthewwardrop) and Tomás Capretto (@tomicapretto) have taken
on responsibility from Nathaniel Smith (@njsmith) for keeping the lights on, but
no new feature development is planned. The spiritual successor of this project
is [Formulaic](https://github.com/matthewwardrop/formulaic), and we
recommend that users [migrate](https://matthewwardrop.github.io/formulaic/migration/)
when possible. For the time being, until major software packages have successfully
transitioned, we will attempt to keep `patsy` working in its current state with
current releases in the Python ecosystem.
---
Patsy is a Python library for describing statistical models
(especially linear models, or models that have a linear component) and
building design matrices. Patsy brings the convenience of [R](http://www.r-project.org/) "formulas" to Python.
[![PyPI - Version](https://img.shields.io/pypi/v/patsy.svg)](https://pypi.org/project/spec-classes/)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/patsy.svg)
![https://patsy.readthedocs.io/](https://img.shields.io/badge/docs-read%20now-blue.svg)
![PyPI - Status](https://img.shields.io/pypi/status/patsy.svg)
![https://coveralls.io/r/pydata/patsy?branch=master](https://coveralls.io/repos/pydata/patsy/badge.png?branch=master)
![https://doi.org/10.5281/zenodo.592075](https://zenodo.org/badge/DOI/10.5281/zenodo.592075.svg)
- **Documentation:** <https://patsy.readthedocs.io/>
- **Downloads:** <http://pypi.python.org/pypi/patsy/>
- **Code and issues:** <https://github.com/pydata/patsy>
- **Mailing list:** <pydata@googlegroups.com> (<http://groups.google.com/group/pydata>)
## Dependencies
* Python (3.6+)
* numpy
* Optional:
* pytest/pytest-cov: needed to run tests
* scipy: needed for spline-related functions like ``bs``
## Installation
``pip install patsy`` (or, for traditionalists: ``python setup.py install``)
## License
2-clause BSD, see LICENSE.txt for details.

View File

@ -0,0 +1,67 @@
patsy-1.0.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
patsy-1.0.1.dist-info/LICENSE.txt,sha256=PySjI5M9NnkQ8yir-yH40XiR7zhn2UEBXecpOluoTrw,4313
patsy-1.0.1.dist-info/METADATA,sha256=ysEJvarQHM-gUqIZ9ZPOEeFcSjy00DUQzwYR9x09Dfs,3320
patsy-1.0.1.dist-info/RECORD,,
patsy-1.0.1.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
patsy-1.0.1.dist-info/WHEEL,sha256=-G_t0oGuE7UD0DrSpVZnq1hHMBV9DD2XkS5v7XpmTnk,110
patsy-1.0.1.dist-info/top_level.txt,sha256=twKfN4KbeHgauQL25IXZRyHkuO4js0wIeKSnzXzYB2o,6
patsy/__init__.py,sha256=HYe3BrOSFypfnQ04GBWygF5A9k2xBsVJHt6kh0Vq9Hg,3645
patsy/__pycache__/__init__.cpython-311.pyc,,
patsy/__pycache__/build.cpython-311.pyc,,
patsy/__pycache__/builtins.cpython-311.pyc,,
patsy/__pycache__/categorical.cpython-311.pyc,,
patsy/__pycache__/compat.cpython-311.pyc,,
patsy/__pycache__/compat_ordereddict.cpython-311.pyc,,
patsy/__pycache__/constraint.cpython-311.pyc,,
patsy/__pycache__/contrasts.cpython-311.pyc,,
patsy/__pycache__/desc.cpython-311.pyc,,
patsy/__pycache__/design_info.cpython-311.pyc,,
patsy/__pycache__/eval.cpython-311.pyc,,
patsy/__pycache__/highlevel.cpython-311.pyc,,
patsy/__pycache__/infix_parser.cpython-311.pyc,,
patsy/__pycache__/mgcv_cubic_splines.cpython-311.pyc,,
patsy/__pycache__/missing.cpython-311.pyc,,
patsy/__pycache__/origin.cpython-311.pyc,,
patsy/__pycache__/parse_formula.cpython-311.pyc,,
patsy/__pycache__/redundancy.cpython-311.pyc,,
patsy/__pycache__/splines.cpython-311.pyc,,
patsy/__pycache__/state.cpython-311.pyc,,
patsy/__pycache__/test_build.cpython-311.pyc,,
patsy/__pycache__/test_highlevel.cpython-311.pyc,,
patsy/__pycache__/test_regressions.cpython-311.pyc,,
patsy/__pycache__/test_splines_bs_data.cpython-311.pyc,,
patsy/__pycache__/test_splines_crs_data.cpython-311.pyc,,
patsy/__pycache__/test_state.cpython-311.pyc,,
patsy/__pycache__/tokens.cpython-311.pyc,,
patsy/__pycache__/user_util.cpython-311.pyc,,
patsy/__pycache__/util.cpython-311.pyc,,
patsy/__pycache__/version.cpython-311.pyc,,
patsy/build.py,sha256=2MW6HAzwGDCOHYIanP-oS-JHZnZLi_mUVtWOLT5ZCY8,40402
patsy/builtins.py,sha256=Wt6ECIRaLldvZj5RvtkQNHyOIAes_Cis9YFwTL9f7xc,3141
patsy/categorical.py,sha256=vXvgoC3l9-cxnKZe_-GMgFmgGfR3rbwaTP4Cb-vG19U,18981
patsy/compat.py,sha256=MzTdXp4hw6JygZ5dsbSRN-_HQHbRKQh9OQuJQYVbHsc,1487
patsy/compat_ordereddict.py,sha256=YiLUc0pFm1HdpkV4sUoiVkZBJiPFS9eGy6J7Rilfuxc,9178
patsy/constraint.py,sha256=lzPxlLFD_9anZvSZezuISA3kdkLz75fL0EIvHLvwQKY,19857
patsy/contrasts.py,sha256=Ur0HVW6PXNhauoBPB13iHH0FcR-6q-RiWVZk9ijEmp4,22987
patsy/desc.py,sha256=wJjGfjietjmwixgeIQwuNXXtbfDWCYABgJzfsotpoh0,22149
patsy/design_info.py,sha256=Adx-35b6Dwxh3biHuTqVFyD7xPiTcOOfwjTN5LZmNhM,49895
patsy/eval.py,sha256=kO8x-pEcc3twWB2PpYVx_yE9dK1Xl7vSQAlHjQz-sZk,30877
patsy/highlevel.py,sha256=--65iwNSSzEFXBcCeUMt5zVAnIf3yek5OXFJTib8C2g,13635
patsy/infix_parser.py,sha256=8S1SHsOLdr3CFmjmcFe0BmH4MQiX2-KHn2HbXESv-xA,9515
patsy/mgcv_cubic_splines.py,sha256=HWTSY8EMGlGIM06K2k4EKKIwZUhqxVc023rucA8-S8Y,45214
patsy/missing.py,sha256=NRQiWEHoQfrfl2l7U6ttfEzEAG6zcUe5WixtlEO4asw,11351
patsy/origin.py,sha256=T8vdAy3YMOWWHZPI4BsHKyy6Ntbi2VT9ar1sLfpfk7c,4598
patsy/parse_formula.py,sha256=aTjBt_O-6w8wEdc4nJQprDxbxQK11xJAX_o9VhXSdik,9404
patsy/redundancy.py,sha256=XEDe6Ym4v4w4MnK63oRfQmWV5PzQQI--2Tdulte__v4,10632
patsy/splines.py,sha256=A8R163NvLlsbINZAYaWS3uJ2lnQIawFpF1qig7zxjsc,16972
patsy/state.py,sha256=W8eSHxDr7F-AfpcdRpzqBxESJwG9cZFepSQ8sQr5EBU,6830
patsy/test_build.py,sha256=2Yj0P8X0LdCRm1UrjoVD0_bOqoT_Hdv4bjZAgmd6T0w,27428
patsy/test_highlevel.py,sha256=Rs8oh7OSH54OKLFWhHNq4teSZM0MOjZQhXl3cYb8nIw,28617
patsy/test_regressions.py,sha256=4c_Gdg8KitwKzcPYs4RlFZdtezT7iitqLds7ALzgQBk,849
patsy/test_splines_bs_data.py,sha256=ocC_FOzdkoLKcwElhw96csdBQBteZSjL7DZBAcTxXqY,144178
patsy/test_splines_crs_data.py,sha256=9QigM3tZxXWgEwSJKyKer_ka1ccrpnHTI7spRUvsO8o,133390
patsy/test_state.py,sha256=foA55_WQYoLJNN5N4u9yxhCpDRWOga8feTibONPLLUc,7855
patsy/tokens.py,sha256=5ytXo9dczgyUm6KU1f40aJl7v1vuQx4lhSDO8iBGtk8,8141
patsy/user_util.py,sha256=E53372TfMoGX2czUoaW4djN_TVRaIOu4pcYroC2P_p8,9308
patsy/util.py,sha256=c5x_Ovc6FvwNbSbf2KZF_PawdAjda55bB-JmpuQAoyc,28499
patsy/version.py,sha256=HVwo82WE9XD2KtPz4k4rFe2sVsaLA9kJt8n71fidUKg,823

View File

@ -0,0 +1,6 @@
Wheel-Version: 1.0
Generator: bdist_wheel (0.42.0)
Root-Is-Purelib: true
Tag: py2-none-any
Tag: py3-none-any

View File

@ -0,0 +1 @@
patsy