summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorArmin Rigo <arigo@tunes.org>2020-02-13 10:09:29 +0100
committerArmin Rigo <arigo@tunes.org>2020-02-13 10:09:29 +0100
commit3d7cdd07ac7b93e983f865325acfb7ea23851c38 (patch)
tree873156f61a06770dc53f87b5fa80740e079c82b3 /README.md
parent7ea8164f22c36b64fe1d88c8b74e961aecfb399d (diff)
downloadcffi-3d7cdd07ac7b93e983f865325acfb7ea23851c38.tar.gz
Backed out changeset af4aa63d5fc8
Diffstat (limited to 'README.md')
-rw-r--r--README.md25
1 files changed, 22 insertions, 3 deletions
diff --git a/README.md b/README.md
index 9711660..3e7862d 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,26 @@ Foreign Function Interface for Python calling C code.
Please see the [Documentation](http://cffi.readthedocs.org/) or uncompiled
in the doc/ subdirectory.
-This project moved
-------------------
+Download
+--------
-The new home is https://foss.heptapod.net/pypy/cffi
+[Download page](https://bitbucket.org/cffi/cffi/downloads)
+
+Contact
+-------
+
+[Mailing list](https://groups.google.com/forum/#!forum/python-cffi)
+
+Testing/development tips
+------------------------
+
+To run tests under CPython, run::
+
+ pip install pytest # if you don't have py.test already
+ pip install pycparser
+ python setup.py build_ext -f -i
+ py.test c/ testing/
+
+If you run in another directory (either the tests or another program),
+you should use the environment variable ``PYTHONPATH=/path`` to point
+to the location that contains the ``_cffi_backend.so`` just compiled.