~ubuntu-branches/ubuntu/karmic/python-docutils/karmic

« back to all changes in this revision

Viewing changes to setup_textwrap.py

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Urlichs
  • Date: 2004-05-18 08:36:50 UTC
  • Revision ID: james.westby@ubuntu.com-20040518083650-ife8gdsk0s95m8k1
Tags: 0.3.3-1
* New Upstream release.
  - Closes: #249246
* De-right-aligned the Closes: entries in the changelog.

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 = 'textwrap',
 
9
          description = 'Python text wrapping library',
 
10
          #long_description = '',
 
11
          url = 'http://docutils.sourceforge.net/',
 
12
          version = '0.2+',
 
13
          author = 'Greg Ward',
 
14
          author_email = 'gward@python.net',
 
15
          license = 'Python',
 
16
          package_dir = {'': 'extras'},
 
17
                  py_modules = ['textwrap'])
 
18
    return dist
 
19
 
 
20
if __name__ == '__main__' :
 
21
    do_setup()