Skip to content

Commit

Permalink
setup.py updates
Browse files Browse the repository at this point in the history
  • Loading branch information
tobgle committed Apr 30, 2020
1 parent 210960d commit 6ba995d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions setup.py
Expand Up @@ -4,12 +4,14 @@
from distutils.core import setup

setup(name='termsql',
version='0.3',
version='1.0',
description='Convert text from a file or from stdin into SQL table and query it instantly. Uses sqlite as backend. The idea is to make SQL into a tool on the command line or in scripts.',
author='Tobias Glaesser',
url='https://gitorious.org/termsql',
author_email='tobimensch@gmail.com',
url='https://github.com/tobimensch/termsql',
scripts=['termsql','where','limit','groupby','orderby','select'],
data_files=[('/usr/share/man/man1/', ['termsql.1.gz'])]
data_files=[('/usr/share/man/man1/', ['termsql.1.gz'])],
license='MIT'
)


2 changes: 1 addition & 1 deletion termsql
Expand Up @@ -53,7 +53,7 @@ else:

locale.setlocale(locale.LC_ALL, '')

VERSION = "0.3"
VERSION = "1.0"
#configureable default values
sqlite_cmd = 'sqlite3'
table_name = 'tbl'
Expand Down

0 comments on commit 6ba995d

Please sign in to comment.