]> git.parisson.com Git - deefuzzer.git/commitdiff
[setup] add cython3, add wheel, fix py3 packages
authorGuillaume Pellerin <guillaume.pellerin@ircam.fr>
Tue, 31 Dec 2019 11:50:01 +0000 (12:50 +0100)
committerGuillaume Pellerin <guillaume.pellerin@ircam.fr>
Tue, 31 Dec 2019 11:50:01 +0000 (12:50 +0100)
README.rst
setup.py

index 080566abfb6fadb9b3b190472f43f6f3d4a3b17b..ccde926961bea7e8058d17dbee2e762c57389613 100644 (file)
@@ -98,7 +98,7 @@ an install inside Gygwin should work well.
 
 To install it, say on Debian, do::
 
-    sudo apt-get install python-pip python-dev python-liblo \
+    sudo apt-get install python3-pip python3-dev cython3 python-liblo \
                          python-mutagen python-pycurl python-yaml \
                          libshout3-dev librtmp-dev liblo-dev \
                          libcurl4-openssl-dev libmariadbclient-dev
index 00db1cf56e431984e33e3a53e28590a054ba5c08..a8c1de1ac2c3f39600c2f090502caf0ef5ad5c31 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -21,9 +21,18 @@ setup(
     long_description=open('README.rst').read(),
     author="Guillaume Pellerin",
     author_email="yomguy@parisson.com",
-    version='0.8.0a',
+    version='0.8.0a1',
     install_requires=[
         'setuptools',
+        'wheel',
+        'python-shout==0.2.6',
+        'python-twitter==3.5',
+        'mutagen==1.43.0',
+        'pyliblo==0.10.0',
+        'pycurl==7.43.0.2',
+        'pyyaml==3.13',
+        'mysqlclient==1.4.6',
+        'xmltodict==0.12.0',
     ],
     platforms=['OS Independent'],
     license='GPL v3',