Init version 0.1.20
authorThierry Florac <thierry.florac@onf.fr>
Thu, 27 Sep 2018 10:15:50 +0200
changeset 985 5045e1a3a4bb
parent 984 754d0102389d
child 986 3fc7f8f84864
Init version 0.1.20
buildout.cfg
setup.py
--- a/buildout.cfg	Thu Sep 27 10:14:49 2018 +0200
+++ b/buildout.cfg	Thu Sep 27 10:15:50 2018 +0200
@@ -86,4 +86,4 @@
 eggs = pyams_content [test]
 
 [versions]
-pyams_content = 0.1.19.1
+pyams_content = 0.1.20
--- a/setup.py	Thu Sep 27 10:14:49 2018 +0200
+++ b/setup.py	Thu Sep 27 10:15:50 2018 +0200
@@ -14,7 +14,9 @@
 This module contains pyams_content package
 """
 import os
-from setuptools import setup, find_packages
+
+from setuptools import find_packages, setup
+
 
 DOCS = os.path.join(os.path.dirname(__file__),
                     'docs')
@@ -22,7 +24,7 @@
 README = os.path.join(DOCS, 'README.txt')
 HISTORY = os.path.join(DOCS, 'HISTORY.txt')
 
-version = '0.1.19.1'
+version = '0.1.20'
 long_description = open(README).read() + '\n\n' + open(HISTORY).read()
 
 tests_require = []