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

from os import sep
from distutils.core import setup, Extension

if __name__ == '__main__' :

    module = Extension('fringtools',sources = ['src'+sep+'extension'+sep+'fringtools.cpp'])
    
    setup(\
        name         = "fring",
        version      = "0.0.1",
        license      = "GPL",
        description  = "Display Disk Usage Visually",

        packages     = ['fringlib'],
        package_dir  = {'fringlib': 'src'+sep+'fringlib'},
        scripts      = ['src'+sep+'fring'],

        ext_modules = [ module ]
    )