summaryrefslogtreecommitdiff
path: root/setup.py
blob: 44b30e9c0e2f920a230dabc7a1140b7bc379a04f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/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',
)