summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG3
-rw-r--r--doc/source/conf.py4
-rwxr-xr-xlaunch.sh2
-rw-r--r--setup.py26
-rw-r--r--src/args.py4
5 files changed, 24 insertions, 15 deletions
diff --git a/CHANGELOG b/CHANGELOG
index b14b9917..c8a86bb1 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -2,6 +2,9 @@ This file describes the new features in each poezio release.
For more detailed changelog, see the roadmap:
http://dev.louiz.org/projects/poezio/roadmap
+* Poezio 0.8.1
+- Builds with python 3.4
+
* Poezio 0.8
- Allow in-band password changing with /password
- Force c2s encryption until configured otherwise
diff --git a/doc/source/conf.py b/doc/source/conf.py
index 37cf9d5f..5cd773ad 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -53,9 +53,9 @@ copyright = '%s, Mathieu Pasquet - Florent Le Coz' % time.strftime('%Y')
# built documents.
#
# The short X.Y version.
-version = '0.8'
+version = '0.8.1'
# The full version, including alpha/beta/rc tags.
-release = '0.8-dev'
+release = '0.8.1'
add_function_parentheses = True
diff --git a/launch.sh b/launch.sh
index 73c21f1b..a697f005 100755
--- a/launch.sh
+++ b/launch.sh
@@ -1,4 +1,4 @@
#!/bin/sh
-exec python3 -OO src/poezio.py -v 0.8 "$@"
+exec python3 -OO src/poezio.py -v 0.8.1 "$@"
diff --git a/setup.py b/setup.py
index 9e8ee2ad..c6746336 100644
--- a/setup.py
+++ b/setup.py
@@ -14,15 +14,17 @@ if not os.path.exists(os.path.join(current_dir, 'src', 'default_config.cfg')):
os.path.join(current_dir, 'src', 'default_config.cfg'))
setup(name="poezio",
- version="0.8",
+ version="0.8.1",
description="A console XMPP client",
long_description=
- """
- Poezio is a Free chat client aiming to reproduce the ease of use of most
- IRC clients (e.g. weechat, irssi) while using the XMPP network.
- """,
+ "Poezio is a Free chat client aiming to reproduce the ease of use of most "
+ "IRC clients (e.g. weechat, irssi) while using the XMPP network."
+ "\n"
+ "Documentation is available at http://doc.poez.io/0.8.",
+
+
ext_modules = [module_poopt],
- url = 'http://poezio.eu/',
+ url = 'http://poez.io/',
license = 'zlib',
author = 'Florent Le Coz',
@@ -31,22 +33,26 @@ setup(name="poezio",
maintainer = 'Mathieu Pasquet',
maintainer_email = 'mathieui@mathieui.net',
- classifiers = ['Development Status :: 5 - Production/Stable',
+ classifiers = [ 'Development Status :: 4 - Beta',
'Environment :: Console :: Curses',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: zlib/libpng License',
'Natural Language :: English',
'Operating System :: Unix',
'Topic :: Communications :: Chat',
- 'Programming Language :: Python :: 3',
+ 'Programming Language :: Python :: 3'
],
keywords = ['jabber', 'xmpp', 'client', 'chat', 'im', 'console'],
packages = ['poezio', 'poezio_plugins', 'poezio_plugins.gpg', 'poezio_themes'],
package_dir = {'poezio': 'src', 'poezio_plugins': 'plugins', 'poezio_themes': 'data/themes'},
package_data = {'poezio': ['default_config.cfg']},
scripts = ['scripts/poezio'],
- data_files = [('share/poezio/themes/', ['data/themes/dark.py']),
- ('share/man/man1/', ['data/poezio.1'])],
+ data_files = [('share/man/man1/', ['data/poezio.1'])],
+
+ install_requires = ['sleekxmpp==1.2.4',
+ 'dnspython3>=1.11.1'],
+ extras_require = {'OTR plugin': 'python-potr>=1.0',
+ 'Screen autoaway plugin': 'pyinotify==0.9.4'}
)
# Remove the link afterwards
diff --git a/src/args.py b/src/args.py
index 4691a224..33c62761 100644
--- a/src/args.py
+++ b/src/args.py
@@ -20,7 +20,7 @@ def parse_args(CONFIG_PATH=''):
parser.add_option("-d", "--debug", dest="debug",
help="The file where debug will be written", metavar="DEBUG_FILE")
parser.add_option("-v", "--version", dest="version",
- help=SUPPRESS, metavar="VERSION", default="0.8-dev")
+ help=SUPPRESS, metavar="VERSION", default="0.8.1")
(options, args) = parser.parse_args()
else:
parser = ArgumentParser()
@@ -29,6 +29,6 @@ def parse_args(CONFIG_PATH=''):
parser.add_argument("-d", "--debug", dest="debug",
help="The file where debug will be written", metavar="DEBUG_FILE")
parser.add_argument("-v", "--version", dest="version",
- help=SUPPRESS, metavar="VERSION", default="0.8-dev")
+ help=SUPPRESS, metavar="VERSION", default="0.8.1")
options = parser.parse_args()
return options