Skip to content

Commit

Permalink
license stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe Hamilton committed Aug 25, 2015
1 parent 3709f20 commit c50a2b1
Show file tree
Hide file tree
Showing 10 changed files with 74 additions and 0 deletions.
24 changes: 24 additions & 0 deletions LICENSE.txt
@@ -0,0 +1,24 @@
/*

Copyright (C) 2015, Joe Hamilton

Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.


*/
6 changes: 6 additions & 0 deletions posix_mutex.c
@@ -1,3 +1,9 @@
/*
Simpleaudio Python Extension
Copyright (C) 2015, Joe Hamilton
MIT License (see LICENSE.txt)
*/

#include "simpleaudio.h"
#include <stdlib.h>
#include <pthread.h>
Expand Down
4 changes: 4 additions & 0 deletions setup.py
@@ -1,3 +1,7 @@
# Simpleaudio Python Extension
# Copyright (C) 2015, Joe Hamilton
# MIT License (see LICENSE.txt)

#from distutils.core import setup, Extension
from setuptools import setup, Extension
import sys
Expand Down
6 changes: 6 additions & 0 deletions simpleaudio.c
@@ -1,3 +1,9 @@
/*
Simpleaudio Python Extension
Copyright (C) 2015, Joe Hamilton
MIT License (see LICENSE.txt)
*/

#include "simpleaudio.h"

PyObject* sa_python_error;
Expand Down
6 changes: 6 additions & 0 deletions simpleaudio.h
@@ -1,3 +1,9 @@
/*
Simpleaudio Python Extension
Copyright (C) 2015, Joe Hamilton
MIT License (see LICENSE.txt)
*/

#ifndef SIMPLEAUDIO_H
#define SIMPLEAUDIO_H

Expand Down
4 changes: 4 additions & 0 deletions simpleaudio/shiny.py
@@ -1,3 +1,7 @@
# Simpleaudio Python Extension
# Copyright (C) 2015, Joe Hamilton
# MIT License (see LICENSE.txt)

from _simpleaudio import play_buffer

def play_wave_read(wave_read):
Expand Down
6 changes: 6 additions & 0 deletions simpleaudio_alsa.c
@@ -1,3 +1,9 @@
/*
Simpleaudio Python Extension
Copyright (C) 2015, Joe Hamilton
MIT License (see LICENSE.txt)
*/

#include "simpleaudio.h"
#include <alsa/asoundlib.h>
#include <pthread.h>
Expand Down
6 changes: 6 additions & 0 deletions simpleaudio_mac.c
@@ -1,3 +1,9 @@
/*
Simpleaudio Python Extension
Copyright (C) 2015, Joe Hamilton
MIT License (see LICENSE.txt)
*/

#include "simpleaudio.h"
#include <AudioToolbox/AudioToolbox.h>

Expand Down
6 changes: 6 additions & 0 deletions simpleaudio_win.c
@@ -1,3 +1,9 @@
/*
Simpleaudio Python Extension
Copyright (C) 2015, Joe Hamilton
MIT License (see LICENSE.txt)
*/

#include "simpleaudio.h"
#include <Windows.h>
#include <Mmsystem.h>
Expand Down
6 changes: 6 additions & 0 deletions windows_mutex.c
@@ -1,3 +1,9 @@
/*
Simpleaudio Python Extension
Copyright (C) 2015, Joe Hamilton
MIT License (see LICENSE.txt)
*/

#include "simpleaudio.h"
#include <stdlib.h>
#include <Windows.h>
Expand Down

0 comments on commit c50a2b1

Please sign in to comment.