diff --git a/setup.cfg b/setup.cfg index 692b4ec..452eaf9 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bdist_rpm] -requires=python-daemon python-zmq +requires=python-daemon pyzmq python3-six release=1 [versioneer] diff --git a/setup.py b/setup.py index 786aea9..ad92ec0 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Copyright (c) 2011, 2012, 2014, 2015. +# Copyright (c) 2011, 2012, 2014, 2015, 2020. # Author(s): @@ -34,7 +34,7 @@ cmdclass=versioneer.get_cmdclass(), description='Messaging system for pytroll', author='The pytroll team', - author_email='martin.raspaud@smhi.se', + author_email='pytroll@googlegroups.com', url="http://github.com/pytroll/posttroll", packages=['posttroll'], entry_points={ @@ -52,5 +52,6 @@ 'Topic :: Scientific/Engineering', 'Topic :: Communications' ], + python_requires='>=3.6', test_suite='posttroll.tests.suite', )