public
Description: Python library for symbolic mathematics
Homepage: http://sympy.org
Clone URL: git://github.com/plaes/sympy.git
sympy /
name age message
file .gitattributes Wed Aug 27 23:24:41 -0700 2008 Initial .gitattributes We tune git diff core t... [Kirill Smelkov]
file .gitignore Wed Nov 26 12:55:22 -0800 2008 Don't track gedit backup files [Fabian Seoane]
file .hgignore Wed Mar 26 10:44:14 -0700 2008 .hgignore += doc/ build stuff [Kirill Smelkov]
file AUTHORS Wed Jun 24 16:27:19 -0700 2009 Added Ronan Lamy <ronan.lamy@gmail.com> to the ... [Fabian Pedregosa]
file LICENSE Sun Feb 08 19:46:22 -0800 2009 license: the year 2009 added to the copyright [certik]
file MANIFEST.in Mon Dec 15 10:56:15 -0800 2008 AUTHORS file added to MANIFEST.in, so that it i... [certik]
file README Sat Feb 14 11:27:11 -0800 2009 README: Download instructions updated They wer... [certik]
file TODO Sun Apr 20 00:52:38 -0700 2008 Strip trailing whitespaces all over SymPy exce... [Kirill Smelkov]
directory bin/ Tue Jul 07 21:10:59 -0700 2009 bin/coverage_doctest.py script written Use it ... [certik]
directory data/ Sun Apr 20 00:52:38 -0700 2008 Strip trailing whitespaces all over SymPy exce... [Kirill Smelkov]
directory doc/ Tue Jul 07 07:46:16 -0700 2009 SymPy 0.6.5.beta3 release [Fabian Pedregosa]
directory examples/ Mon Jul 06 11:03:54 -0700 2009 Added an example for variable separation. Sign... [plaes]
file setup.py Thu Jun 25 11:39:19 -0700 2009 Add the logic module (and its tests) to the ins... [Fabian Pedregosa]
file setupegg.py Tue Dec 16 16:40:20 -0800 2008 Adding setupegg.py to allow python setupegg.py ... [ellisonbg]
directory sympy/ Thu Jul 09 02:38:17 -0700 2009 Remove unused imports from core [Fabian Pedregosa]
README
SymPy
=====

A Python library for symbolic mathematics.

http://code.google.com/p/sympy/

See the AUTHORS file for the list of authors.

And many more people helped on the SymPy mailinglist, reported bugs, helped
organize SymPy's participation in the Google Summer of Code, the Google Highly
Open Participation Contest, wrote and blogged about SymPy...

License: New BSD License (see the LICENSE file for details)
covers all files in the sympy repository unless stated otherwise.

0. Download
-----------

$ git clone git://git.sympy.org/sympy.git

For other options (tarballs, debs, etc.), see the web page of SymPy.


1. Documentation and usage
--------------------------

Everything is at:

http://docs.sympy.org/

You can generate everything at the above site in your local copy of SymPy by:

$ cd doc
$ make html
$ epiphany _build/html/index.html

If you don't want to read that, here is a short usage:

From this directory, start python and:
>>> from sympy import Symbol, cos
>>> x = Symbol('x')
>>> e = 1/cos(x)
>>> print e.series(x, 0, 10)
1 + (1/2)*x**2 + (5/24)*x**4 + (61/720)*x**6 + (277/8064)*x**8 + O(x**10)

SymPy also comes with a console that is a simple wrapper around the
classic python console (or ipython when available) that loads the
sympy namespace and executes some common commands for you.

To start it, issue:

$ bin/isympy

from this directory if SymPy is not installed or simply

$ isympy

if SymPy is installed somewhere in your PATH.


3. Tests
--------

to execute tests, run

./setup.py test

in the current directory.  You need to have py.test installed.


4. How to install py.test
-------------------------

If you use Debian, just install the python-codespeak-lib. Otherwise:

Execute in your home directory:

svn co http://codespeak.net/svn/py/dist py-dist

This will create a "py-dist" directory in you home dir. Add this line to
your .bashrc:

eval `python ~/py-dist/py/env.py`

Now you can call "py.test" from anywhere.

5. Clean
--------

To clean everything (thus getting the same tree as in the svn):

./setup.py clean


6. Brief History
----------------

SymPy was started by Ondrej Certik in 2005, he wrote some code during the
summer, then he wrote some more code during the summer 2006. In February 2007,
Fabian Seoane joined the project and helped fixed many things, contributed
documentation and made it alive again. 5 students (Mateusz Paprocki, Brian
Jorgensen, Jason Gedge, Robert Schwarz and Chris Wu) improved SymPy incredibly
during the summer 2007 as part of the Google Summer of Code. Pearu Peterson
joined the development during the summer 2007 and he has made SymPy much more
competitive by rewriting the core from scratch, that has made it from 10x to
100x faster. Jurjen N.E. Bos has contributed pretty printing and other patches.
Fredrik Johansson has wrote mpmath and contributed a lot of patches. Since
then, a lot more people have joined the development and some people have also
left. You can see the full list in doc/src/aboutus.txt, or online at:

http://docs.sympy.org/aboutus.html#sympy-development-team

People who preferred not to be associated with the project anymore have "not
active anymore" written near their names.


7. Citation
-----------

To cite SymPy in publications use::

  SymPy Development Team (2008). SymPy: Python library for symbolic mathematics
  URL http://www.sympy.org.

A BibTeX entry for LaTeX users is::

  @Manual{,
    title = {SymPy: Python library for symbolic mathematics},
    author = {{SymPy Development Team}},
    year = {2008},
    url = {http://www.sympy.org},
  }

SymPy is BSD licensed, so you are free to use it whatever you like, be it
academic, commercial, creating forks or derivatives, as long as you copy the BSD
statement if you redistribute it (see the LICENSE file for details).
That said, although not required by the SymPy license, if it is convenient for
you, please cite SymPy when using it in your work and also consider
contributing all your changes back, so that we can incorporate it and all of us
will benefit in the end.