summaryrefslogtreecommitdiff
blob: ddd4a9d5b1ceb9ff4020b590ffd660ae21ffbcf2 (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 WebappConfig.version import WCVERSION


setup(name          = 'webapp-config',
      version       = WCVERSION,
      description   = 'Python script for managing the deployment of web-based applications',
      author        = 'Stuart Herbert, Renat Lumpau, Gunnar Wrobel, Devan Franchini',
      author_email  = 'stuart@gentoo.org',
      url           = 'http://git.overlays.gentoo.org/gitweb/?p=proj/webapp-config.git;a=summary',
      packages      = ['WebappConfig'],
      scripts       = ['sbin/webapp-config', 'sbin/webapp-cleaner'],
      license       = 'GPL',
      )