diff --git a/LICENSE b/LICENSE index 896da30..0b7f64c 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020 lumyjuwon +Copyright (c) 2022 lumyjuwon Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/dist/KoreaNewsCrawler-1.51-py3-none-any.whl b/dist/KoreaNewsCrawler-1.51-py3-none-any.whl new file mode 100644 index 0000000..b71894c Binary files /dev/null and b/dist/KoreaNewsCrawler-1.51-py3-none-any.whl differ diff --git a/setup.cfg b/setup.cfg index 224a779..0f94f37 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,2 +1,2 @@ [metadata] -description-file = README.md \ No newline at end of file +description_file = README.md \ No newline at end of file diff --git a/setup.py b/setup.py index 13b0d6e..a75ab27 100644 --- a/setup.py +++ b/setup.py @@ -1,16 +1,16 @@ from setuptools import setup # build package command: python setup.py bdist_wheel -# release package command: twine upload dist/KoreaNewsCrawler-version-py3-none-any.whl +# release package command: twine upload dist/KoreaNewsCrawler-${version}-py3-none-any.whl setup( name = 'KoreaNewsCrawler', - version = '1.50', + version = '1.51', description = 'Crawl the korean news', author = 'lumyjuwon', author_email = 'lumyjuwon@gmail.com', url = 'https://github.com/lumyjuwon/KoreaNewsCrawler', - download_url = 'https://github.com/lumyjuwon/KoreaNewsCrawler/archive/1.50.tar.gz', + download_url = 'https://github.com/lumyjuwon/KoreaNewsCrawler/archive/1.51.tar.gz', install_requires = ['requests', 'beautifulsoup4'], packages = ['korea_news_crawler'], keywords = ['crawl', 'KoreaNews', 'crawler'],