Initial commit (Vesion 0.1)
[tablet-suite] / setup.py
1 #!/usr/bin/env python
2
3 from distutils.core import setup
4 from subprocess import *
5 import os
6 import glob
7
8 dist = setup(name='tabletsuite',
9     version='0.0.1',
10     maintainer='Otacilio Lacerda',
11     maintainer_email='otaciliolacerda@gmail.com',
12     description='TabletSuite application',
13     long_description='',
14     license='GNU GPL',
15     platforms='all',
16     scripts=['tabletsuite'],
17     packages=['src', 'src/backup', 'src/pcsuite', 'src/ui', 'src/style'],
18     data_files=[('share/tabletsuite', glob.glob("img/*")),
19                 ('share/applications', ['img/tabletsuite.desktop']),
20                 ('share/fonts/extras', glob.glob('fonts/*'))],
21 )