From d31461c45ce10c4b7b1d1b66f78bbae1bacdcfd7 Mon Sep 17 00:00:00 2001 From: Oliver Kocsis Date: Mon, 19 Jun 2017 23:50:33 +0200 Subject: [PATCH] Fix setup.py (comma was missing between topics), and update build.bat to install required packages via pip. Signed-off-by: Oliver Kocsis --- distribute.bat | 3 +++ setup.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/distribute.bat b/distribute.bat index 925d1f7..77baa30 100644 --- a/distribute.bat +++ b/distribute.bat @@ -1,3 +1,6 @@ +rmdir dist /s /q python setup.py sdist +pip install wheel python setup.py bdist_wheel +pip install twine twine upload dist/* diff --git a/setup.py b/setup.py index 395a6e6..c4e7d05 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ 'Topic :: Communications :: Chat', 'Topic :: Internet :: WWW/HTTP', - 'Topic :: Software Development :: Libraries :: Application Frameworks' + 'Topic :: Software Development :: Libraries :: Application Frameworks', 'Operating System :: OS Independent', 'Environment :: Web Environment',