aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@cepl.eu>2016-05-16 11:09:57 +0200
committerMatěj Cepl <mcepl@cepl.eu>2016-05-16 11:09:57 +0200
commit3febfb4e08dcbc00d54d33bff87152dcc6f2b1ff (patch)
treede1a0bd0d5bb9e15a428c3f7db6f5cb591ba6283
parent52b5641745bdc25c2c4e74ff86d280b9c0d36d60 (diff)
downloadyamlish-3febfb4e08dcbc00d54d33bff87152dcc6f2b1ff.tar.gz
Fix keywords
Space-separated string instead of list? Really?
-rw-r--r--setup.py8
1 files 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",