Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ python版日本語意味役割付与システム(ASA)
- cabochaのダウンロード https://taku910.github.io/cabocha/

## インストール
```git clone {url} ```

```pip install -e python_asa```
```pip install git+https://github.com/Takeuchi-Lab-LM/python_asa```

## 使用方法
```cd asapy```でディレクトリを移動し、
Expand Down Expand Up @@ -92,4 +90,4 @@ if __name__ == '__main__':
print (result_json['surface']) # input sentence
result_chunks = result_json['chunks']
out_predarg(result_chunks)
```
```
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,6 @@
'Programming Language :: Python :: 3.7',
],

packages=['asapy'], # Required
packages=["asapy","asapy.dict","asapy.init","asapy.load","asapy.load.cchart","asapy.load.filter","asapy.load.frame","asapy.load.noun","asapy.output","asapy.parse","asapy.parse.analyzer","asapy.parse.compoundPredicate","asapy.parse.feature","asapy.parse.idiom","asapy.parse.semantic","asapy.result"], # Required
package_data={"asapy":["dict/*"]},
)