-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
42 lines (40 loc) · 1.16 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
32
33
34
35
36
37
38
39
40
41
42
from setuptools import setup, find_packages
with open('README.md', 'r', encoding='utf-8') as fp:
long_description = fp.read()
setup(
name='weread',
version='0.1.1b0',
description='微信读书ePub下载工具',
long_description=long_description,
long_description_content_type='text/markdown',
author='Steve R. Sun',
author_email='[email protected]',
url='www.sunruiqi.com',
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
],
license='GNU General Public License v2 (GPLv2)',
install_requires=[
'beautifulsoup4==4.11.1',
'lxml>=4.9.1, <=4.9.2',
'pyppeteer==1.0.2',
],
entry_points={
'console_scripts': [
'weread-cli = weread.cli:run'
]
},
extras_require={
'headless': [
'pillow>=9.2.0, <=9.4.0',
'pyzbar==0.1.9',
'qrcode==7.3.1',
]
},
python_requires='>=3.8',
)