forked from wnma3mz/wechat_articles_spider
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
23 lines (21 loc) · 732 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
23
# coding: utf-8
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="wechatarticles",
version="0.7.1",
author="wnma3mz",
author_email="[email protected]",
description="wechat articles scrapy",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/wnma3mz/wechat_articles_spider",
packages=setuptools.find_packages(),
install_requires=["requests>=2.20.0", "beautifulsoup4>=4.7.1"],
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
),
)