forked from jvan/vrui-launcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (20 loc) · 837 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from distutils.core import setup
import os
list_files = lambda d: [os.path.join(d, f) for f in os.listdir(d)]
template_files = list_files('templates')
fragment_files = list_files('fragments')
setup(
name = 'vrui-launcher',
version = '0.0.1',
author = 'Jordan Van Aalsburg',
author_email = '[email protected]',
url = 'https://github.com/comscictr/vrui-launcher',
description = 'Launcher utility for VRUI applications',
packages = [ 'vruilauncher', 'vruilauncher.widgets' ],
scripts = [ 'vrui-launcher', 'vrui-launcher-settings' ],
data_files = [
('/usr/share/vrui-launcher/templates', template_files),
('/usr/share/vrui-launcher/fragments', fragment_files),
('/usr/share/glib-2.0/schemas', ['etc/apps.vrui-launcher.gschema.xml'])
]
)