From 3febfb4e08dcbc00d54d33bff87152dcc6f2b1ff Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Mon, 16 May 2016 11:09:57 +0200 Subject: Fix keywords Space-separated string instead of list? Really? --- setup.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 0331165..2d187b7 100644 --- a/setup.py +++ b/setup.py @@ -1,9 +1,11 @@ # coding: utf-8 +import os.path + from setuptools import setup + requires_list = [ "PyYAML>=3.09" ] -import os.path def read(fname): @@ -12,14 +14,14 @@ def read(fname): setup( name='yamlish', - version="0.18.0", + version="0.18.1", description='Python implementation of YAMLish', author='Matěj Cepl', author_email='mcepl@redhat.com', url='https://gitlab.com/mcepl/yamlish/', py_modules=['yamlish'], long_description=read("README.rst"), - keywords=['TAP', 'YAML', 'yamlish'], + keywords='TAP YAML yamlish', classifiers=[ "Programming Language :: Python", "Programming Language :: Python :: 2", -- cgit