#!/usr/bin/python
# $Id: setup.py,v 1.9 2002/12/12 02:45:53 goodger Exp $

from distutils.core import setup

def do_setup():
    dist = setup(
          name = 'roman',
          description = 'Python Roman-numbers library',
          #long_description = '',
          url = 'http://docutils.sourceforge.net/',
          version = '0.2+',
          author = 'Mark Pilgrim',
          author_email = 'f8dy@diveintopython.org',
          license = 'Python',
          package_dir = {'': 'extras'},
		  py_modules = ['roman'])
    return dist

if __name__ == '__main__' :
    do_setup()
