Skip to content

Commit

Permalink
long_description
Browse files Browse the repository at this point in the history
  • Loading branch information
dag committed Nov 25, 2010
1 parent 0570b42 commit 0b0de30
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,39 @@
"""
Attest
======
Attest is a unit testing framework built from the ground up with idiomatic
Python in mind. Unlike others, it is not built on top of unittest though it
provides compatibility by creating TestSuites from Attest collections.
It has a functional API inspired by `Flask`_ and a class-based API that
mimics Python itself. The core avoids complicated assumptions leaving you
free to write tests however you prefer.
.. _Flask: http://pypi.python.org/pypi/Flask/
::
from attest import Tests, Assert
math = Tests()
@math.test
def arithmetics():
Assert(1 + 1) == 2
if __name__ == '__main__':
math.run()
"""

from setuptools import setup


setup(
name='Attest',
version='0.1dev',
description='Modern, Pythonic unit testing.',
long_description=__doc__,

author='Dag Odenhall',
author_email='dag.odenhall@gmail.com',
Expand Down

0 comments on commit 0b0de30

Please sign in to comment.