Skip to content

Commit 6ba995d

Browse files
committed
setup.py updates
1 parent 210960d commit 6ba995d

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

setup.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44
from distutils.core import setup
55

66
setup(name='termsql',
7-
version='0.3',
7+
version='1.0',
88
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.',
99
author='Tobias Glaesser',
10-
url='https://gitorious.org/termsql',
10+
author_email='tobimensch@gmail.com',
11+
url='https://github.com/tobimensch/termsql',
1112
scripts=['termsql','where','limit','groupby','orderby','select'],
12-
data_files=[('/usr/share/man/man1/', ['termsql.1.gz'])]
13+
data_files=[('/usr/share/man/man1/', ['termsql.1.gz'])],
14+
license='MIT'
1315
)
1416

1517

termsql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ else:
5353

5454
locale.setlocale(locale.LC_ALL, '')
5555

56-
VERSION = "0.3"
56+
VERSION = "1.0"
5757
#configureable default values
5858
sqlite_cmd = 'sqlite3'
5959
table_name = 'tbl'

0 commit comments

Comments
 (0)