Skip to content

Commit 48fd2e4

Browse files
Add a notice about project maintainership to the README file (and change it from an RST to Markdown file).
1 parent 4c613d0 commit 48fd2e4

File tree

4 files changed

+49
-47
lines changed

4 files changed

+49
-47
lines changed

MANIFEST.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
include setup.cfg .coveragerc tox.ini
2-
include TODO LICENSE.txt README.rst CODE_OF_CONDUCT.md
2+
include TODO LICENSE.txt README.md CODE_OF_CONDUCT.md
33
recursive-include tools *.py *.R
44
recursive-include doc *
55
prune doc/_build

README.md

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# Patsy
2+
3+
**Notice:** `patsy` is no longer under active development. As of August 2021,
4+
Matthew Wardrop (@matthewwardrop) and Tomás Capretto (@tomicapretto) have taken
5+
on responsibility from Nathaniel Smith (@njsmith) for keeping the lights on, but
6+
no new feature development is planned. The spiritual successor of this project
7+
is [Formulaic](https://github.com/matthewwardrop/formulaic), and we
8+
recommend those interested in new feature development contribute there. Those
9+
whose use-cases continue to be met by `patsy` can continue using this package
10+
with increased confidence that things will continue to work as is for the
11+
foreseeable future.
12+
13+
---
14+
15+
Patsy is a Python library for describing statistical models
16+
(especially linear models, or models that have a linear component) and
17+
building design matrices. Patsy brings the convenience of [R](http://www.r-project.org/) "formulas" to Python.
18+
19+
[![PyPI - Version](https://img.shields.io/pypi/v/patsy.svg)](https://pypi.org/project/spec-classes/)
20+
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/patsy.svg)
21+
![https://patsy.readthedocs.io/](https://img.shields.io/badge/docs-read%20now-blue.svg)
22+
![PyPI - Status](https://img.shields.io/pypi/status/patsy.svg)
23+
![https://travis-ci.org/pydata/patsy](https://travis-ci.org/pydata/patsy.png?branch=master)
24+
![https://coveralls.io/r/pydata/patsy?branch=master](https://coveralls.io/repos/pydata/patsy/badge.png?branch=master)
25+
![https://doi.org/10.5281/zenodo.592075](https://zenodo.org/badge/DOI/10.5281/zenodo.592075.svg)
26+
27+
- **Documentation:** <https://patsy.readthedocs.io/>
28+
- **Downloads:** <http://pypi.python.org/pypi/patsy/>
29+
- **Code and issues:** <https://github.com/pydata/patsy>
30+
- **Mailing list:** <[email protected]> (<http://groups.google.com/group/pydata>)
31+
32+
33+
## Dependencies
34+
35+
* Python (2.6, 2.7, or 3.3+)
36+
* six
37+
* numpy
38+
* Optional:
39+
* nose: needed to run tests
40+
* scipy: needed for spline-related functions like ``bs``
41+
42+
## Installation
43+
``pip install patsy`` (or, for traditionalists: ``python setup.py install``)
44+
45+
## License
46+
47+
2-clause BSD, see LICENSE.txt for details.

README.rst

-45
This file was deleted.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
DESC = ("A Python package for describing statistical models and for "
77
"building design matrices.")
88

9-
LONG_DESC = open("README.rst").read()
9+
LONG_DESC = open("README.md").read()
1010

1111
# defines __version__
1212
exec(open("patsy/version.py").read())

0 commit comments

Comments
 (0)