-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
31 lines (29 loc) · 1.14 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from setuptools import dist, find_packages, setup
# `Cython` is used when installing `kss` library.
dist.Distribution().fetch_build_eggs(["Cython"])
setup(
name="canrevan",
version="4.0.0",
author="Jungwoo Park",
author_email="affjljoo3581@gmail.com",
description="Simple Naver News Crawler",
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
keywords=["naver", "news", "dataset", "nlp"],
url="https://github.com/affjljoo3581/canrevan",
license="Apache-2.0",
package_dir={"": "src"},
packages=find_packages("src"),
python_requires=">=3.6.0",
install_requires=["tqdm>=4.46.0", "bs4", "lxml>=4.5.1", "aiohttp"],
entry_points={"console_scripts": ["canrevan = canrevan:_main"]},
classifiers=[
"Environment :: Console",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)