aboutsummaryrefslogtreecommitdiff
blob: 9c50c541c453f3e6d216831941def3eeb50bec4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/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',
      author_email  = 'wrobel@gentoo.org',
      url           = 'http://projects.gunnarwrobel.de/scripts',
      packages      = ['layman', 'layman.overlays'],
      scripts       = ['bin/layman'],
      license       = 'GPL',
      )