v0.5.13
[sympy.git] / sympy / __init__.py
blob91f607855d36423c84ebfaa5b9f7da9b08708abf
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.13"
15 #put path to pyglet into the search path, so that it can be imported
16 import os.path
17 import sys
18 sys.path.insert(0, os.path.join(os.path.dirname(__file__), "thirdparty", \
19 "pyglet"))
21 import symbol as stdlib_symbol
22 from sympy.core import *
24 from series import *
25 from functions import *
26 from ntheory import *
27 from concrete import *
28 from simplify import *
29 from solvers import *
30 from matrices import *
31 from geometry import *
32 from polynomials import *
33 from utilities import *
34 from integrals import *
35 from plotting import Plot, textplot
36 from printing import pretty, pretty_print, pprint, pprint_use_unicode, \
37 pprint_try_use_unicode, print_gtk
38 from printing import latex, preview, view, pngview, pdfview, dviview
40 import abc
42 #for _n, _cls in Basic.singleton.items():
43 # exec '%s = _cls()' % (_n)