-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathREADME
34 lines (22 loc) · 854 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
BioFrills
=========
Utilities for biomolecular sequence analysis, underpinned by Biopython.
Requires Python version 2.7 or a recent PyPy. Optionally uses Cython to speed up
some CPU-intensive operations.
License: BSD
Installation
------------
This is an ordinary Python package. You can install it from source with the
setup.py script::
python setup.py build
python setup.py install
Stable releases are uploaded to PyPI as well, so you can install BioFrills with
Python package managers::
pip install biofrills
Or::
easy_install biofrills
Some scripts that I find useful are in the scripts/ directory. By default these
are not installed, but you can include them by uncommenting the line in setup.py
that starts with ``scripts=glob``...
Alternatively, you can just copy those scripts into another directory in your
``$PATH``.