-
Notifications
You must be signed in to change notification settings - Fork 105
/
setup.py
22 lines (20 loc) · 841 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
# build package command: python setup.py bdist_wheel
# release package command: twine upload dist/KoreaNewsCrawler-${version}-py3-none-any.whl
setup(
name = 'KoreaNewsCrawler',
version = '1.51',
description = 'Crawl the korean news',
author = 'lumyjuwon',
author_email = '[email protected]',
url = 'https://github.com/lumyjuwon/KoreaNewsCrawler',
download_url = 'https://github.com/lumyjuwon/KoreaNewsCrawler/archive/1.51.tar.gz',
install_requires = ['requests', 'beautifulsoup4'],
packages = ['korea_news_crawler'],
keywords = ['crawl', 'KoreaNews', 'crawler'],
python_requires = '>=3.6',
zip_safe=False,
classifiers = [
'Programming Language :: Python :: 3.6'
]
)