some small pre-release updates

This commit is contained in:
holger krekel 2010-11-25 16:36:25 +01:00
parent 0efa6e5aea
commit 9e7ef58cfd
4 changed files with 8 additions and 17 deletions

View File

@ -3,17 +3,5 @@ include README.txt
include setup.py include setup.py
include distribute_setup.py include distribute_setup.py
include LICENSE include LICENSE
#include conftest.py
graft doc graft doc
graft testing graft testing
exclude doc/_build
include testing
#exclude *.orig
#exclude *.orig
exclude *.rej
exclude .hgignore
exclude *.pyc
#recursive-exclude testing *.pyc *.orig *.rej *$py.class
#prune .pyc
#prune .svn
#prune .hg

View File

@ -11,11 +11,14 @@ Here are some examples of projects using py.test:
* `PIDA <http://pida.co.uk>`_ framework for integrated development * `PIDA <http://pida.co.uk>`_ framework for integrated development
* `Fom <http://packages.python.org/Fom/>`_ a fluid object mapper for FluidDB * `Fom <http://packages.python.org/Fom/>`_ a fluid object mapper for FluidDB
* `six <http://pypi.python.org/pypi/six/>`_ Python 2 and 3 compatibility utilities * `six <http://pypi.python.org/pypi/six/>`_ Python 2 and 3 compatibility utilities
* `pdb++ <http://bitbucket.org/antocuni/pdb>`_ a fancier version of PDB * `pediapress <http://code.pediapress.com/wiki/wiki>`_ MediaWiki articles
* `mwlib <http://pypi.python.org/pypi/mwlib>`_ mediawiki parser and utility library
* `The Translate Toolkit <http://translate.sourceforge.net/wiki/toolkit/index>`_ for localization and conversion * `The Translate Toolkit <http://translate.sourceforge.net/wiki/toolkit/index>`_ for localization and conversion
* `execnet <http://codespeak.net/execnet>`_ rapid multi-Python deployment * `execnet <http://codespeak.net/execnet>`_ rapid multi-Python deployment
* `bbfreeze <http://pypi.python.org/pypi/bbfreeze>`_ create standalone executables from Python scripts
* `pdb++ <http://bitbucket.org/antocuni/pdb>`_ a fancier version of PDB
* `py-s3fuse <http://code.google.com/p/py-s3fuse/>`_ Amazon S3 FUSE based filesystem * `py-s3fuse <http://code.google.com/p/py-s3fuse/>`_ Amazon S3 FUSE based filesystem
* `Circuits <http://pypi.python.org/pypi/circuits/1.2.1>`_ lightweight Event Driven Framework * `Circuits <http://pypi.python.org/pypi/circuits>`_ lightweight Event Driven Framework
* `pygtk-helpers <http://bitbucket.org/aafshar/pygtkhelpers-main/>`_ easy interaction with PyGTK * `pygtk-helpers <http://bitbucket.org/aafshar/pygtkhelpers-main/>`_ easy interaction with PyGTK
* `QuantumCore <http://quantumcore.org/>`_ statusmessage and repoze openid plugin * `QuantumCore <http://quantumcore.org/>`_ statusmessage and repoze openid plugin
* `pydataportability <http://pydataportability.net/>`_ libraries for managing the open web * `pydataportability <http://pydataportability.net/>`_ libraries for managing the open web
@ -39,4 +42,4 @@ Some organisations using py.test
* `Open End <http://openend.se>`_ * `Open End <http://openend.se>`_
* `Laboraratory of Bioinformatics <http://genesilico.pl/>`_ * `Laboraratory of Bioinformatics <http://genesilico.pl/>`_
* `merlinux <http://merlinux.eu>`_ * `merlinux <http://merlinux.eu>`_
* many more ... (please send a note via the :ref:`contact`) * many more ... (please be so kind to send a note via :ref:`contact`)

View File

@ -1,7 +1,7 @@
""" """
unit and functional testing with Python. unit and functional testing with Python.
""" """
__version__ = '2.0.0.dev39' __version__ = '2.0.0.dev42'
__all__ = ['main'] __all__ = ['main']
from _pytest.core import main, UsageError, _preloadplugins from _pytest.core import main, UsageError, _preloadplugins

View File

@ -22,7 +22,7 @@ def main():
name='pytest', name='pytest',
description='py.test: simple powerful testing with Python', description='py.test: simple powerful testing with Python',
long_description = long_description, long_description = long_description,
version='2.0.0.dev39', version='2.0.0.dev42',
url='http://pytest.org', url='http://pytest.org',
license='MIT license', license='MIT license',
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'], platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],