Skip to content

Commit d236041

Browse files
minor fixes
1 parent 2418c8c commit d236041

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ language: python
55
python:
66
- "3.5"
77
script: # run tests
8-
- make test
8+
- PYTHONPATH=. make test
99
notifications:
1010
email: false

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,8 @@ You can improve the stop word filtering using a stop word list. You can build yo
106106
You can directly use the python wrapper by the following way:
107107
```
108108
Usage:
109-
python ln2sql.py -d <path> -l <path> -i <input-sentence> [-j <path>] [-t <path>] [-s <path>]
109+
From the cloned source:
110+
python3 -m ln2sql.main -d <path> -l <path> -i <input-sentence> [-j <path>] [-t <path>] [-s <path>]
110111
Parameters:
111112
-h print this help message
112113
-d <path> path to sql dump file
@@ -118,7 +119,7 @@ Parameters:
118119
```
119120
example of usage:
120121
```
121-
python ln2sql.py -d database/city.sql -l lang/english.csv -j output.json -i "Count how many city there are with the name blob?"
122+
python3 -m ln2sql.main -d database/city.sql -l lang/english.csv -j output.json -i "Count how many city there are with the name blob?"
122123
```
123124

124125
or by graphical interface by typing the following command:

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='ln2sql',
5-
version='0.1',
5+
version='0.2',
66
url='https://github.com/FerreroJeremy/ln2sql',
77
license='GNU',
88
author='Jérémy Ferrero,Vikram Singh,Shashank Khare',

0 commit comments

Comments
 (0)