diff --git a/MANIFEST.in b/MANIFEST.in index d9def1c..a3549cb 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1,5 @@ -recursive-include resources * \ No newline at end of file + include *.txt + include pytest.ini + recursive-include docs *.png + recursive-include scripts *.py + recursive-include tests *.md \ No newline at end of file diff --git a/README.md b/README.md index e9f0c71..c3f3fd2 100644 --- a/README.md +++ b/README.md @@ -70,10 +70,7 @@ el.link('今日は東京都のマックにアップルを買いに行き、ス ``` ## Setup -NOTE: This is an interim setup method. In the future, it is expected that more simpler method of setup will be available. -* Download [`resources.zip`](https://drive.google.com/drive/folders/11jwmddofQwiH1HSTRwAOAv6-EHUMgI5z?usp=sharing) and unzip. - -* run `pip install -r requirements.txt; python3 setup.py install` +`pip install jel` ## Test `$ python pytest` diff --git a/setup.py b/setup.py index 9e8ac68..7ae5179 100644 --- a/setup.py +++ b/setup.py @@ -13,12 +13,12 @@ setup( name='jel', - version='0.1.0', + version='0.1.1', description='Japanese Entity Linker.', long_description=readme, long_description_content_type='text/markdown', author='izuna385', - author_email='izuna385', + author_email='izuna385@gmail.com', url='https://github.com/izuna385/jel', packages=find_packages(), include_package_data=True, @@ -26,7 +26,7 @@ classifiers=[ 'Development Status :: 2 - Pre-Alpha', 'Natural Language :: English', - "License :: OSI Approved :: Apache 2.0", + "License :: OSI Approved :: Apache Software License", 'Programming Language :: Python :: 3.7', "Operating System :: OS Independent", ],