[go: up one dir, main page]

File: setup.py

package info (click to toggle)
cecilia 5.0.9-1.1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 9,172 kB
  • ctags: 2,904
  • sloc: python: 16,984; sh: 50; makefile: 15
file content (20 lines) | stat: -rw-r--r-- 796 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 = "cecilia",
        author = "Jean Piche, Olivier Belanger, Jean-Michel Dumas",
        author_email = "belangeo@gmail.com",
        version = "0.5.9",
        description = "Sound synthesis and audio signal processing environment",
        url = "http://code.google.com/p/cecilia/",
        license = "GPLv3",
        package_dir = { 'cecilia': '' },
        packages = ['cecilia.Resources'],
        py_modules = ['cecilia.__init__'], #workaround to have Resources under cecilia dir
        scripts = ['Cecilia5.py'],
        package_data={
            'cecilia.Resources': ['modules/*/*', 'Cecilia5.icns', 'Cecilia5.ico', 'CeciliaFileIcon5.icns', 'CeciliaFileIcon5.ico', 'Cecilia_splash.png'],
        }
    )