~ubuntu-branches/ubuntu/hardy/python-docutils/hardy

« back to all changes in this revision

Viewing changes to setup_roman.py

  • Committer: Bazaar Package Importer
  • Author(s): martin f. krafft
  • Date: 2006-07-10 11:45:05 UTC
  • mfrom: (2.1.4 edgy)
  • Revision ID: james.westby@ubuntu.com-20060710114505-otkhqcslevewxmz5
Tags: 0.4-3
Added build dependency on python-central (closes: #377580).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/env python
2
 
# $Id: setup.py,v 1.9 2002/12/12 02:45:53 goodger Exp $
3
 
 
4
 
from distutils.core import setup
5
 
 
6
 
def do_setup():
7
 
    dist = setup(
8
 
          name = 'roman',
9
 
          description = 'Python Roman-numbers library',
10
 
          #long_description = '',
11
 
          url = 'http://docutils.sourceforge.net/',
12
 
          version = '0.2+',
13
 
          author = 'Mark Pilgrim',
14
 
          author_email = 'f8dy@diveintopython.org',
15
 
          license = 'Python',
16
 
          package_dir = {'': 'extras'},
17
 
                  py_modules = ['roman'])
18
 
    return dist
19
 
 
20
 
if __name__ == '__main__' :
21
 
    do_setup()