summaryrefslogtreecommitdiff
path: root/setup.py
blob: ec480ee0227e7539fbb2e241d822d431e357a462 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env python

from distutils.core import setup
import glob, os, commands, sys

setup(
    name = 'python-aptsources',
    version = '0.0.1',
    description = 'Abstratcion of the sources.list',
    packages = ['AptSources'],
    data_files = [('share/python-aptsources/templates',
                  glob.glob('build/templates/*.info'))],
    license = 'GNU GPL',
    platforms = 'posix',
    cmdclass = { "build" : build_plus,
                 "build_l10n" :  build_l10n }
)