From 5b19d025e03eeaa115c2119fb8ce32903869fc4e Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Tue, 31 Dec 2019 12:50:01 +0100 Subject: [PATCH] [setup] add cython3, add wheel, fix py3 packages --- README.rst | 2 +- setup.py | 11 ++++++++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 080566a..ccde926 100644 --- a/README.rst +++ b/README.rst @@ -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 diff --git a/setup.py b/setup.py index 00db1cf..a8c1de1 100644 --- 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', -- 2.47.3