Simplify the extension declarations in setup.py.
[invirt/packages/python-afs.git] / README
1 ================
2 Installing PyAFS
3 ================
4
5 To install PyAFS, you will first need to install Cython_, which you
6 can do by running::
7
8   $ easy_install Cython
9
10 Once you've done that, to install PyAFS globally, run::
11
12   $ python setup.py install
13
14 If you want to build PyAFS without installing it globally, you may
15 want to run::
16
17   $ python setup.py build_ext --inplace
18
19 which will build the C extensions in place next to their source,
20 allowing you to import the various modules, so long as your current
21 working directory is the root of the PyAFS source tree.
22
23 .. _Cython: http://cython.org/