diff --git a/python/MANIFEST.in b/python/MANIFEST.in index c9cdb5f5..f58b8d26 100644 --- a/python/MANIFEST.in +++ b/python/MANIFEST.in @@ -1,10 +1,5 @@ graft src graft scripts -include doc/style.css -include samples/opengl.py -include samples/sound.py -include samples/sound_capture.py -include samples/sound_stream.py -include samples/worm.py -graft samples/data +graft doc +graft samples diff --git a/python/PKG-INFO b/python/PKG-INFO deleted file mode 100644 index 354c67c1..00000000 --- a/python/PKG-INFO +++ /dev/null @@ -1,10 +0,0 @@ -Metadata-Version: 1.0 -Name: PySFML -Version: 1.5 -Summary: Python binding for SFML (Simple and Fast Multimedia Library) -Home-page: http://sfml.sourceforge.net/ -Author: Rémi Koenig -Author-email: remi.k2620@gmail.com -License: zlib/png -Description: UNKNOWN -Platform: UNKNOWN diff --git a/python/samples/libsndfile-1.dll b/python/samples/libsndfile-1.dll deleted file mode 100644 index f112de2b..00000000 Binary files a/python/samples/libsndfile-1.dll and /dev/null differ diff --git a/python/setup.py b/python/setup.py index 9a6813fc..9eed271e 100644 --- a/python/setup.py +++ b/python/setup.py @@ -4,7 +4,7 @@ from distutils.core import setup, Extension setup(name='PySFML', - version='1.5', + version='1.6', description='Python binding for SFML (Simple and Fast Multimedia Library)', author='Rémi Koenig', author_email='remi.k2620@gmail.com', diff --git a/python/src/main.cpp b/python/src/main.cpp index 91944ffa..a7547f04 100644 --- a/python/src/main.cpp +++ b/python/src/main.cpp @@ -281,7 +281,7 @@ initsf(void) Py_INCREF(&PySfListenerType); PyModule_AddObject(m, "Listener", (PyObject *)&PySfListenerType); - PyModule_AddStringConstant(m, "Version", "1.5"); + PyModule_AddStringConstant(m, "Version", "1.6"); PySfColor_InitConst(); PySfKey_InitConst();