File: setup.py

package info (click to toggle)
soundgrain 4.1.1-2.1
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 6,936 kB
  • ctags: 976
  • sloc: python: 3,851; sh: 34; makefile: 15
file content (20 lines) | stat: -rw-r--r-- 830 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- coding: utf-8 -*-

import os
from distutils.core import setup

setup(  name = "soundgrain",
        author = "Olivier Belanger",
        author_email = "belangeo@gmail.com",
        version = "4.1.1",
        description = "A graphical interface to control granular sound synthesis modules.",
        url = "http://code.google.com/p/soundgrain/",
        license = "GPLv3",
        package_dir = { 'soundgrain': '' },
        packages = ['soundgrain.Resources'],
        py_modules = ['soundgrain.__init__'], #workaround to have Resources under soundgrain dir
        scripts = ['SoundGrain.py'],
        package_data={
            'soundgrain.Resources': ['images/*', 'new_soundgrain_file.sg', 'SoundGrainDocIcon.icns', 'SoundGrainDocIcon.ico', 'SoundGrain.icns', 'SoundGrain.ico', 'SoundGrainSplash.png'],
        }
    )