aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2014-04-02 13:29:58 +0200
committerMatěj Cepl <mcepl@redhat.com>2014-04-02 13:29:58 +0200
commita25846aefaf75d51abd595c2498cab51f75b9f76 (patch)
tree2abf933d0da7ec923ca970e9583dfd7b0eec436f
parent4aaa4b7b64bf7b24fc6fcbfae7b8de510d8fd159 (diff)
downloadyamlish-a25846aefaf75d51abd595c2498cab51f75b9f76.tar.gz
Clean up and bump the version number.0.11
-rw-r--r--setup.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/setup.py b/setup.py
index f75f85d..67eabef 100644
--- a/setup.py
+++ b/setup.py
@@ -1,18 +1,18 @@
# coding: utf-8
-from setuptools import setup, Command
-import sys
+from setuptools import setup
requires_list = [
- "PyYAML>=3.09"
- ]
+ "PyYAML>=3.09"
+]
import os.path
+
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as inf:
return "\n" + inf.read().replace("\r\n", "\n")
setup(
name='yamlish',
- version="0.10",
+ version="0.11",
description='Python implementation of YAMLish',
author='Matěj Cepl',
author_email='mcepl@redhat.com',
@@ -25,14 +25,14 @@ setup(
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
- "Development Status :: 4 - Beta",
+ "Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Markup",
- ],
+ ],
test_suite="test",
install_requires=requires_list
)