-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (38 loc) · 985 Bytes
/
setup.py
File metadata and controls
42 lines (38 loc) · 985 Bytes
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
'''
Function:
setup
Author:
Charles
微信公众号:
Charles的皮卡丘
GitHub:
https://github.com/CharlesPikachu
更新日期:
2020-05-05
'''
import SeleniumLogin
from setuptools import setup, find_packages
'''readme'''
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
'''setup'''
setup(
name='SeleniumLogin',
version=SeleniumLogin.__version__,
description='Login some website using selenium.',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'Operating System :: OS Independent'],
author='Charles',
url='https://github.com/CharlesPikachu/SeleniumLogin',
author_email='charlesjzc@qq.com',
license='MIT',
include_package_data=True,
install_requires=['selenium >= 3.141.0', 'pillow >= 6.0.0', 'numpy >= 1.16.2'],
zip_safe=True,
packages=find_packages()
)