File: setup.py

package info (click to toggle)
python-unit 1.4.1-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 300 kB
  • ctags: 368
  • sloc: python: 844; makefile: 75; sh: 42
file content (17 lines) | stat: -rw-r--r-- 474 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

# see http://software-carpentry.codesourcery.com/entries/build/Distutils/Distutils.html for more information about this file

from distutils.core import setup

setup (
    name = "PyUnit",
    version = "1.4.1",
    description = "PyUnit - a unit testing framework for Python",
    author = "Steve Purcell",
    author_email = "stephen_purcell@yahoo.com",
    url = "http://pyunit.sourceforge.net/",
       
    py_modules = ['unittest', 'unittestgui']
    )