Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Karthikeyan Singaravelan
poezio
Commits
2cac2fa6
Commit
2cac2fa6
authored
Mar 20, 2014
by
mathieui
Browse files
Bump version and setup.py
parent
9a09aa8e
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
24 additions
and
15 deletions
+24
-15
CHANGELOG
CHANGELOG
+3
-0
doc/source/conf.py
doc/source/conf.py
+2
-2
launch.sh
launch.sh
+1
-1
setup.py
setup.py
+16
-10
src/args.py
src/args.py
+2
-2
No files found.
CHANGELOG
View file @
2cac2fa6
...
...
@@ -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
...
...
doc/source/conf.py
View file @
2cac2fa6
...
...
@@ -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
...
...
launch.sh
View file @
2cac2fa6
#!/bin/sh
exec
python3
-OO
src/poezio.py
-v
0.8
"
$@
"
exec
python3
-OO
src/poezio.py
-v
0.8
.1
"
$@
"
setup.py
View file @
2cac2fa6
...
...
@@ -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
...
...
src/args.py
View file @
2cac2fa6
...
...
@@ -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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment