Skip to content

setup.py for full package install #9

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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/*"]},
)