-
Notifications
You must be signed in to change notification settings - Fork 783
/
setup.py
44 lines (42 loc) · 1.23 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
43
44
# -*- coding:utf-8 -*-
from setuptools import setup, find_packages
from DrissionPage import __version__
with open("README.md", "r", encoding='utf-8') as fh:
long_description = fh.read()
setup(
name="DrissionPage",
version=__version__,
author="g1879",
author_email="[email protected]",
description="Python based web automation tool. It can control the browser and send and receive data packets.",
long_description=long_description,
long_description_content_type="text/markdown",
license="BSD",
keywords="DrissionPage",
url="https://DrissionPage.cn",
include_package_data=True,
packages=find_packages(),
zip_safe=False,
install_requires=[
'lxml',
'requests',
'cssselect',
'DownloadKit>=2.0.2',
'websocket-client',
'click',
'tldextract',
'psutil'
],
classifiers=[
"Programming Language :: Python :: 3.6",
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
],
python_requires='>=3.6',
entry_points={
'console_scripts': [
'dp = DrissionPage._functions.cli:main',
],
},
)