File: setup.py

package info (click to toggle)
go2 0.20090829-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 156 kB
  • ctags: 152
  • sloc: python: 844; xml: 141; makefile: 16; sh: 8
file content (16 lines) | stat: -rw-r--r-- 557 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/python

from distutils.core import setup

version = file('debian/changelog').readline().split()[1][1:-1]

setup(name         = 'go2',
      version      = version,
      description  = 'go2 directory finder',
      author       = 'David Villa Alises',
      author_email = 'david.villa@uclm.es>',
      url          = 'http://arco.inf-cr.uclm.es/~dvilla/go2.html',
      license      = 'GPL v2 or later',
      data_files   = [('/usr/lib/go2', ['go2.sh','go2.py','go2.glade2']),
                      ('/usr/share/man/man1', ['go2.1'])],
      )