-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
6 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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='[email protected]', | ||
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' | ||
) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters