--- a/buildout.cfg Thu Nov 28 19:19:43 2019 +0100
+++ b/buildout.cfg Thu Nov 28 19:20:15 2019 +0100
@@ -1,22 +1,14 @@
[buildout]
-eggs-directory = /var/local/env/pyams/eggs
+eggs-directory = eggs
extends = http://download.ztfy.org/pyams/pyams-dev.cfg
find-links = http://download.ztfy.org/eggs
-
socket-timeout = 3
-#allow-picked-versions = false
+versions = versions
+allow-picked-versions = false
show-picked-versions = true
newest = false
-allow-hosts =
- bitbucket.org
- *.python.org
- *.sourceforge.net
- github.com
-
-versions = versions
-
src = src
develop =
.
@@ -27,15 +19,13 @@
package
i18n
pyflakes
+ pylint
test
[package]
recipe = zc.recipe.egg
-eggs =
- pyams_zmq
- pyramid
- zope.component
- zope.interface
+eggs = pyams_zmq
+interpreter = py
[i18n]
recipe = zc.recipe.egg
@@ -55,9 +45,17 @@
on_install = true
cmds = ${buildout:develop}/bin/${pyflakes:scripts}
+[pylint]
+recipe = zc.recipe.egg
+eggs =
+ ${package:eggs}
+ pylint
+entry-points = pylint=pylint.lint:Run
+arguments = sys.argv[1:]
+
[test]
recipe = zc.recipe.testrunner
eggs = pyams_zmq [test]
[versions]
-pyams_zmq = 0.1.5
+pyams_zmq = 0.1.6
--- a/docs/HISTORY.txt Thu Nov 28 19:19:43 2019 +0100
+++ b/docs/HISTORY.txt Thu Nov 28 19:20:15 2019 +0100
@@ -1,6 +1,10 @@
History
=======
+0.1.6
+-----
+ - code cleanup
+
0.1.5
-----
- added ZMQ process started event
--- a/docs/README.txt Thu Nov 28 19:19:43 2019 +0100
+++ b/docs/README.txt Thu Nov 28 19:20:15 2019 +0100
@@ -0,0 +1,29 @@
+=================
+PyAMS_zmq package
+=================
+
+.. contents::
+
+
+What is PyAMS
+=============
+
+PyAMS (Pyramid Application Management Suite) is a small suite of packages written for applications
+and content management with the Pyramid framework.
+
+**PyAMS** is actually mainly used to manage web sites through content management applications (CMS,
+see PyAMS_content package), but many features are generic and can be used inside any kind of web
+application.
+
+
+What is PyAMS_zmq?
+==================
+
+PyAMS_zmq is a package which can be used to handle inter-processes communication by using the 0MQ
+messaging protocol.
+
+
+How to use pyams_apm?
+=====================
+
+A whole set of PyAMS documentation is available on `ReadTheDocs <https://pyams.readthedocs.io>`_
--- a/setup.py Thu Nov 28 19:19:43 2019 +0100
+++ b/setup.py Thu Nov 28 19:20:15 2019 +0100
@@ -22,10 +22,12 @@
README = os.path.join(DOCS, 'README.txt')
HISTORY = os.path.join(DOCS, 'HISTORY.txt')
-version = '0.1.5'
+version = '0.1.6'
long_description = open(README).read() + '\n\n' + open(HISTORY).read()
-tests_require = []
+tests_require = [
+ 'tornado'
+]
setup(name='pyams_zmq',
version=version,
@@ -60,7 +62,6 @@
'pyramid',
'pyzmq',
'tornado',
- 'zope.component',
'zope.interface',
],
entry_points="""
--- a/src/pyams_zmq.egg-info/PKG-INFO Thu Nov 28 19:19:43 2019 +0100
+++ b/src/pyams_zmq.egg-info/PKG-INFO Thu Nov 28 19:20:15 2019 +0100
@@ -1,16 +1,51 @@
Metadata-Version: 2.1
Name: pyams-zmq
-Version: 0.1.5
+Version: 0.1.6
Summary: PyAMS package for 0MQ
Home-page: http://hg.ztfy.org/pyams/pyams_zmq
Author: Thierry Florac
Author-email: tflorac@ulthar.net
License: ZPL
-Description:
+Description: =================
+ PyAMS_zmq package
+ =================
+
+ .. contents::
+
+
+ What is PyAMS
+ =============
+
+ PyAMS (Pyramid Application Management Suite) is a small suite of packages written for applications
+ and content management with the Pyramid framework.
+
+ **PyAMS** is actually mainly used to manage web sites through content management applications (CMS,
+ see PyAMS_content package), but many features are generic and can be used inside any kind of web
+ application.
+
+
+ What is PyAMS_zmq?
+ ==================
+
+ PyAMS_zmq is a package which can be used to handle inter-processes communication by using the 0MQ
+ messaging protocol.
+
+
+ How to use pyams_apm?
+ =====================
+
+ A whole set of PyAMS documentation is available on `ReadTheDocs <https://pyams.readthedocs.io>`_
+
+ Some doctests are also available in package source code.
+
History
=======
+ 0.1.6
+ -----
+ - code cleanup
+
0.1.5
-----
- added ZMQ process started event
--- a/src/pyams_zmq.egg-info/SOURCES.txt Thu Nov 28 19:19:43 2019 +0100
+++ b/src/pyams_zmq.egg-info/SOURCES.txt Thu Nov 28 19:20:15 2019 +0100
@@ -15,7 +15,7 @@
src/pyams_zmq.egg-info/not-zip-safe
src/pyams_zmq.egg-info/requires.txt
src/pyams_zmq.egg-info/top_level.txt
-src/pyams_zmq/doctests/README.txt
+src/pyams_zmq/doctests/README.rst
src/pyams_zmq/tests/__init__.py
src/pyams_zmq/tests/test_utilsdocs.py
src/pyams_zmq/tests/test_utilsdocstrings.py
\ No newline at end of file
--- a/src/pyams_zmq.egg-info/requires.txt Thu Nov 28 19:19:43 2019 +0100
+++ b/src/pyams_zmq.egg-info/requires.txt Thu Nov 28 19:20:15 2019 +0100
@@ -3,7 +3,7 @@
pyramid
pyzmq
tornado
-zope.component
zope.interface
[test]
+tornado