Skip to content

Commit

Permalink
improved publishing for pypi
Browse files Browse the repository at this point in the history
(was missing ... a mail address)
  • Loading branch information
stonebig committed Jun 17, 2014
1 parent 1c7b60c commit 7a73cad
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 13 deletions.
24 changes: 15 additions & 9 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,14 @@ Changelog
=========


2014-06-15 :
------------
2014-06-17a : v0.7.1
--------------------

* improved publishing on Pypi (was tricky, especially the front page)


2014-06-15b : v0.7.0
--------------------

* create a github project 'sqlite_bro', from 'sqlite_py_manager' baresql example

Expand All @@ -12,14 +18,14 @@ Changelog


2014-06-14c : "It's a long way to temporary !"
--------------------------------------------
----------------------------------------------

* works with temporary tables



2014-06-10a : 'Sanitizer of Python (xkcd.com/327)'
------------------------------------------------
--------------------------------------------------

* imported python functions must be validated

Expand All @@ -38,7 +44,7 @@ Changelog


2014-06-04a : 'Log me out !'
--------------------------
----------------------------

* export SQL + SQL top result in a file in 1 click

Expand All @@ -50,19 +56,19 @@ Changelog


2014-06-03a : 'See me now ?'
--------------------------
----------------------------

* character INCREASE icon, so the back of the class can see


2014-05-25a : 'sql everywhere'
--------------------------
------------------------------

* make it work as low as Python 2.7 + SQlite 3.6.21


2014-05-25a : 'Assassination of Class Room
------------------------------------------
2014-05-25a : 'Assassination of Class Room'
----------------------------------------_--

* the GUI is a Class now

Expand Down
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include CHANGES.txt
include README.rst
include LICENCE
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@

[metadata]
description-file = README.rst
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def get_long_description():
long_description=get_long_description(),
keywords=['sqlite', 'gui'],
author='stonebig',
author_email='',
author_email='[email protected]',
url='https://github.com/stonebig/sqlite_bro',
license='MIT license',
py_modules=['sqlite_bro'],
Expand Down
4 changes: 2 additions & 2 deletions sqlite_bro.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ class App:
"""the GUI graphic application"""
def __init__(self):
"""create a tkk graphic interface with a main window tk_win"""
self.__version__ = '0.7.0'
self._title= "2014-06-15b : my first Pypi !"
self.__version__ = '0.7.1'
self._title= "2014-06-17a : Pypi done right !"
self.conn = None # Baresql database object
self.database_file = ""
self.tk_win = Tk()
Expand Down

0 comments on commit 7a73cad

Please sign in to comment.