Metadata-Version: 2.1
Name: codetools
Version: 4.4.0
Summary: code analysis and execution tools
Home-page: https://github.com/enthought/codetools
Download-URL: http://www.enthought.com/repo/ets/codetools-4.4.0.tar.gz
Author: Enthought, Inc.
Author-email: info@enthought.com
Maintainer: ETS Developers
Maintainer-email: enthought-dev@enthought.com
License: BSD
Platform: Windows
Platform: Linux
Platform: Mac OS-X
Platform: Unix
Platform: Solaris
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: OS Independent
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
License-File: LICENSE.txt
Requires-Dist: six
Requires-Dist: traits

============================================
codetools: code analysis and execution tools
============================================

.. image:: https://api.travis-ci.org/enthought/codetools.png?branch=master
   :target: https://travis-ci.org/enthought/codetools
   :alt: Build status

.. image:: http://codecov.io/github/enthought/codetools/coverage.svg?branch=master
   :target: http://codecov.io/github/enthought/codetools?branch=master
   :alt: Coverage report

The codetools project includes packages that simplify meta-programming
and help the programmer separate data from code in Python. This
library contains classes that allow defining simple snippets, or
"blocks", of Python code, analyze variable dependencies in the code
block, and use these dependencies to construct or restrict an
execution graph. These (restricted) code blocks can then be executed
in any namespace. However, this project also provides a
Traits-event-enhanced namespace, called a "context", which can be used
in place of a vanilla namespace to allow actions to be performed
whenever variables are assigned or retrieved from the namespace. This
project is used as the foundation for the BlockCanvas project.
