-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
36 lines (29 loc) · 951 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
24
25
26
27
28
29
30
31
32
33
34
35
36
from setuptools import setup, find_packages
import webnovel
with open('README.md', 'r') as f:
long_description = f.read()
with open('requirements.txt', 'r') as f:
requirements = f.readlines()
setup(
name='webnovelbot',
version=webnovel.__version__,
author="Schicksal",
description="webnovel scraper using selenium",
author_email='[email protected]',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=requirements,
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
"Operating System :: OS Independent",
],
license="MIT license",
keywords='webnovel novel bot api',
url='https://github.com/mHaisham/webnovelbot',
project_urls={
'Source code': 'https://github.com/mHaisham/webnovelbot'
},
packages=find_packages(),
python_requires='>=3.6'
)