File: setup.py

package info (click to toggle)
go2 1.20120217-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 212 kB
  • sloc: python: 1,186; makefile: 17; sh: 9
file content (17 lines) | stat: -rwxr-xr-x 598 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/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.esi.uclm.es/~dvilla/go2.html',
      license      = 'GPL v2 or later',
      data_files   = [('/usr/lib/go2', ['go2.sh', 'go2.py', 'osfs.py']),
                      ('/usr/share/man/man1', ['go2.1']),
                      ('/usr/bin', ['go2'])],
      )