diff --git a/README.md b/README.md index ae5d1d7..08aa329 100644 --- a/README.md +++ b/README.md @@ -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```でディレクトリを移動し、 @@ -92,4 +90,4 @@ if __name__ == '__main__': print (result_json['surface']) # input sentence result_chunks = result_json['chunks'] out_predarg(result_chunks) -``` \ No newline at end of file +``` diff --git a/setup.py b/setup.py index c6ba735..465bf30 100644 --- a/setup.py +++ b/setup.py @@ -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/*"]}, )