Prepare the 1.0 relese

This commit is contained in:
Davide Andreoli 2016-05-15 09:29:28 +02:00
parent ce7a21c27e
commit 75fd54d1f0
4 changed files with 11 additions and 4 deletions

View File

@ -1,4 +1,8 @@
2013-05-010 Dave Andreoli <dave@gurumeditation.it>
2016-05-15 Dave Andreoli <dave@gurumeditation.it>
* First stable release 1.0
2013-05-10 Dave Andreoli <dave@gurumeditation.it>
* Initial release 0.9

2
MANIFEST.in Normal file
View File

@ -0,0 +1,2 @@
include README COPYING ChangeLog
graft data

View File

@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (C) 2013 Davide Andreoli <dave@gurumeditation.it>
# Copyright (C) 2013-2016 Davide Andreoli <dave@gurumeditation.it>
#
# This file is part of Espionage.
#
@ -813,7 +813,7 @@ class SignalReceiver(Frame):
### The main window
class EspionageWin(StandardWindow):
def __init__(self):
StandardWindow.__init__(self, "espionage", "EFL DBus Spy - Espionage")
StandardWindow.__init__(self, "espionage", "Espionage D-Bus inspector")
self.autodel_set(True)
self.callback_delete_request_add(lambda o: elm.exit())

View File

@ -6,9 +6,10 @@ from efl.utils.setup import build_extra, build_fdo, uninstall
setup(
name = 'espionage',
version = '0.9',
version = '1.0',
description = 'D-Bus inspector',
long_description = 'Espionage is a complete D-Bus inspector',
url = 'https://phab.enlightenment.org/w/projects/espionage/',
license = "GNU GPL",
author = 'Dave Andreoli',
author_email = 'dave@gurumeditation.it',