summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: a8c0457dc6c3a3ad25f6265993d2d2fb66f2bd34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python

import sys

from distutils.core import setup

# this affects the names of all the directories we do stuff with
sys.path.insert(0, './')
from layman.version import VERSION


setup(name          = 'layman',
      version       = VERSION,
      description   = 'Python script for retrieving gentoo overlays',
      author        = 'Gunnar Wrobel, Brian Dolbec',
      author_email  = 'wrobel@gentoo.org, brian.dolbec@gmail.com',
      url           = 'http://layman.sourceforge.net/, ' +\
        'http://git.overlays.gentoo.org/gitweb/?p=proj/layman.git;a=summary',
      packages      = ['layman', 'layman.overlays'],
      scripts       = ['bin/layman'],
      license       = 'GPL',
      )