~ubuntu-branches/ubuntu/raring/lfm/raring

« back to all changes in this revision

Viewing changes to .pc/ignore_COPYING.patch/setup.py

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Echeverry
  • Date: 2011-05-21 12:03:10 UTC
  • mfrom: (2.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20110521120310-i6ifehdicskf7skp
Tags: 2.3-1
* New Upstream release.
* debian/control
  + Bumped standard versions 3.9.2 (no changes)
  + Now require python 2.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
# -*- coding: utf-8 -*-
3
3
 
4
4
 
5
 
"""Last File Manager is a simple but powerful file manager for the UNIX console
6
 
It has been developed with the ol' good Midnight Commander as model."""
 
5
"""Last File Manager is a powerful file manager for the UNIX console.
 
6
Based in a curses interface, it's written in Python."""
7
7
 
8
8
 
9
9
from distutils.core import setup
43
43
 
44
44
 
45
45
setup(name = 'lfm',
46
 
      version = '2.2',
 
46
      version = '2.3',
47
47
      license = 'GPL',
48
48
      description = doclines[0],
49
49
      long_description = '\n'.join(doclines[2:]),
50
50
      author = u'Inigo Serna',
51
51
      author_email = 'inigoserna@gmail.com',
52
 
      url = 'http://www.terra.es/personal7/inigoserna/lfm',
 
52
      url = 'https://inigo.katxi.org/devel/lfm',
53
53
      platforms = 'POSIX',
54
54
      classifiers = filter(None, classifiers.split("\n")),
55
55
      py_modules = ['lfm/__init__', 'lfm/lfm', 'lfm/messages', 'lfm/files',