SymPy 0.5.10 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News SymPy 0.5.10 (Default branch)
# 1  
Old 01-04-2008
SymPy 0.5.10 (Default branch)

Image SymPy is a symbolic manipulation package, written in pure Python. Its aim is to become a full featured CAS in Python, while keeping the code as simple as possible in order to be comprehensible and easily extensible. Currently, Sympy has only around 1600 lines of code (including comments), and its capabilities include basic arithmetics, basic simplification, series expansion, functions (exp, ln, sin, cos, tan, etc.), differentiation, integration (currently it can do only very simple integrals), basic substitution, arbitrary precision integers and rationals, standard (Python) floats, basic complex numbers, and symbolic limits. License: BSD License (revised) Changes:
The latex printer has been rewritten, preview now uses a built-in pyglet instead of pygame, square root denesting has been implemented, a parser of simple Mathematica expressions has been added, the TeXmacs interface has been written, SymPy objects should work in numpy arrays now, and the handwritten sympify() parser has been rewritten and simplified using Python AST.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
PYTHON-MKDEBIAN(1)						   User Commands						PYTHON-MKDEBIAN(1)

NAME
python-mkdebian - Generate a suitable Debian source package for a standard distutils application SYNOPSIS
python-mkdebian [options] DESCRIPTION
This script generates a reasonably Debian Policy compliant Debian source package for a Python application that uses distutils properly. It assumes that there are no public Python modules, and generates just a single application binary package. Information is taken from setup.py's generated .egg-info file: author, project name, description, version, upstream source, license, and required and provided Python modules (which are translated to Debian python library package names, and automatically added as package dependencies). It generates a simple cdbs/python-support rules file. python-mkdebian was designed to be used with the DistUtilsExtra.auto module, which calculates required Python dependencies automatically. However, it makes no explicit assumptions about DistUtilsExtra, so if setup.py has complete information it will work with any distutils setup. OPTIONS
--force-control=FORCE_CONTROL Force control file behaviour. Can be one of "none" (keep unchanged), "deps" (only update dependencies), or "full" (recreate whole file). By default only dependencies will be updated ("deps"). --force-copyright Force whole copyright file to be recreated. By default it will not touch an already existing copyright file, so that you can custom- ize them. --force-rules Force whole rules file to be recreated. By default it will not touch an already existing rules file, so that you can customize them. --changelog=CHANGELOG Add changelog entry to debian/changelog (can be specified multiple times) --dependency=PACKAGENAME Add additional debian package dependency (can be specified multiple times) --prefix=PREFIX Ask for installing all your modules in the dedicated PREFIX (default is /usr) --version Show program's version number and exit -h, --help Show this help message and exit SEE ALSO
Python help for the distutils module AUTHOR
python-mkdebian is developed by Martin Pitt <martin.pitt@ubuntu.com>. python-mkdebian May 2010 PYTHON-MKDEBIAN(1)