<?xml version="1.0" encoding="UTF-8" ?>
<rdf:RDF xmlns="http://usefulinc.com/ns/doap#" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><Project><name>pythoscope</name>
<shortdesc>unit test generator for Python</shortdesc>
<description>Installation
------------

Easiest way to get Pythoscope is via setuptools::

 $ easy_install  pythoscope

You can also download a source package from
http://pythoscope.org/local--files/download/pythoscope-0.2.1.tar.gz.
or get a copy of a development branch using `bazaar &lt;http://bazaar-vcs.org/&gt;`_::

  bzr branch lp:pythoscope

Usage
-----

You can use the tool through a single **pythoscope** command. To analyze
one of your projects, type::

 $ pythoscope  collect  path/to/your/project/

It's only doing static analysis, and doesn't import your modules or
execute your code in any way, so you're perfectly safe to run it on
anything you want. After that, a file named **.pythoscope** will be
created in the current directory. To generate test stubs based on your
project, select files you want to generate tests for::

 $ pythoscope  generate  path/to/your/project/specific/file.py  path/to/your/project/other/*.py

Test files will be saved into **pythoscope-tests/** directory. Test cases
are aggregated into TestCase classes. Currently each production class
and each production function gets its own TestCase class.

Some of the classes and functions are ignored by the generator - all
which name begins with an underscore, exception classes, and some
others.

Generator itself is configurable to some extent, see::

 $ pythoscope  generate  --help

for more information on available options.

Changelog
=========

0.2.1
-----

Contains a packaging bug fix, which prevented users from using the tests
cases generator and running internal pythoscope tests.

0.2
---

First release, featuring static code analysis and generation of test
stubs.</description>
<homepage rdf:resource="http://pythoscope.org" />
<maintainer><foaf:Person><foaf:name>Michal Kwiatkowski</foaf:name>
<foaf:mbox_sha1sum>860d9cfd476dace67cfae6d593278072a96e2387</foaf:mbox_sha1sum></foaf:Person></maintainer>
<release><Version><revision>0.2.1</revision></Version></release>
</Project></rdf:RDF>