File: setup.py

package info (click to toggle)
soundgrain 6.0.1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,508 kB
  • sloc: python: 4,547; sh: 42; makefile: 10
file content (31 lines) | stat: -rw-r--r-- 905 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
"""
This is a setup.py script generated by py2applet

Usage:
    python3.6 setup.py py2app
"""

from setuptools import setup, find_packages
import glob
import os.path

APP = ['Soundgrain.py']
APP_NAME = 'Soundgrain'
DATA_FILES = ['Resources/']
OPTIONS = {'argv_emulation': False,
           #'strip': False, # only for debugging purposes.
           'iconfile': 'Resources/SoundGrain.icns',
           'includes': 'wx.adv,wx.html,wx.xml'}

setup(
    name="soundgrain",
    author="Olivier Belanger",
    author_email="belangeo@gmail.com",
    version="6.0.1",
    packages=find_packages(),
    description="A graphical interface to control granular sound synthesis modules.",
    url="http://ajaxsoundstudio.com/software/soundgrain/",
    license="GPLv3",
    scripts=['SoundGrain.py'],
    data_files=[(os.path.dirname(f), [f])for f in glob.glob('Resources/**', recursive=True) if os.path.isfile(f)],
)