v0.5.9
[sympy.git] / sympy / __init__.py
blobd5afe215b8c647fa7c8d0f97e841c7daed634b23
1 """
2 SymPy is a Python library for symbolic mathematics. It aims to become a
3 full-featured computer algebra system (CAS) while keeping the code as simple as
4 possible in order to be comprehensible and easily extensible. SymPy is written
5 entirely in Python and does not require any external libraries, except
6 optionally for plotting support.
8 See the webpage for more information and documentation:
10 http://code.google.com/p/sympy/
11 """
13 __version__ = "0.5.9"
15 from sympy.core import *
17 from series import *
18 from ntheory import *
19 from concrete import *
20 from functions import *
21 from simplify import *
22 from solvers import *
23 from matrices import *
24 from geometry import *
25 from polynomials import *
26 from utilities import *
27 from integrals import *
28 from plotting import Plot, textplot
29 from printing import pretty, pretty_print, pprint, pprint_use_unicode, \
30 pprint_try_use_unicode, print_gtk
32 import abc
34 #for _n, _cls in Basic.singleton.items():
35 # exec '%s = _cls()' % (_n)