diff options
author | Matěj Cepl <mcepl@cepl.eu> | 2016-05-16 11:09:57 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@cepl.eu> | 2016-05-16 11:09:57 +0200 |
commit | 3febfb4e08dcbc00d54d33bff87152dcc6f2b1ff (patch) | |
tree | de1a0bd0d5bb9e15a428c3f7db6f5cb591ba6283 /setup.py | |
parent | 52b5641745bdc25c2c4e74ff86d280b9c0d36d60 (diff) | |
download | yamlish-3febfb4e08dcbc00d54d33bff87152dcc6f2b1ff.tar.gz |
Fix keywords
Space-separated string instead of list? Really?
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -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", |