root/setup.py
| Revision 1, 1.9 kB (checked in by anonymous, 1 year ago) | |
|---|---|
| |
| Line | |
|---|---|
| 1 | #!/usr/bin/env python |
| 2 | # |
| 3 | # Copyright (C) 2006 by Patrick Stinson |
| 4 | # patrickkidd@gmail.com |
| 5 | # |
| 6 | # This program is free software; you can redistribute it and/or modify |
| 7 | # it under the terms of the GNU General Public License as published by |
| 8 | # the Free Software Foundation; either version 2 of the License, or |
| 9 | # (at your option) any later version. |
| 10 | # |
| 11 | # This program is distributed in the hope that it will be useful, |
| 12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | # GNU General Public License for more details. |
| 15 | # |
| 16 | # You should have received a copy of the GNU General Public License |
| 17 | # along with this program; if not, write to the |
| 18 | # Free Software Foundation, Inc., |
| 19 | # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 20 | # |
| 21 | """ |
| 22 | Setup script for the pk package and scripts. |
| 23 | """ |
| 24 | |
| 25 | import sys |
| 26 | from distutils.core import setup |
| 27 | |
| 28 | import setup_rtmidi |
| 29 | import setup_pk |
| 30 | import setup_scosc |
| 31 | |
| 32 | ext_modules = [] |
| 33 | ext_modules += setup_rtmidi.ext_modules |
| 34 | |
| 35 | packages = [] |
| 36 | packages += setup_pk.packages |
| 37 | packages += setup_scosc.packages |
| 38 | |
| 39 | scripts = [] |
| 40 | scripts += setup_pk.scripts |
| 41 | scripts += setup_pk.scripts |
| 42 | |
| 43 | setup(name="pksampler", |
| 44 | version="0.4b", |
| 45 | description="The pksampler", |
| 46 | author_email="patrickkidd@gmail.com", |
| 47 | url="http://pksampler.sourceforge.net", |
| 48 | packages=packages, |
| 49 | scripts=scripts, |
| 50 | ext_modules=ext_modules, |
| 51 | ) |
| 52 |
Note: See TracBrowser for help on using the browser.