-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
54 lines (52 loc) · 1.79 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
45
46
47
48
49
50
51
52
53
54
from setuptools import setup, find_packages
def get_description():
try:
with open("README.md", encoding="utf-8") as readme_file:
long_description = readme_file.read()
return long_description
except:
return None
setup(
name="botasaurus_requests",
version='4.0.36',
description="botasaurus_requests is a fork of the requests library with the playwright dependencies removed.",
long_description_content_type="text/markdown",
long_description=get_description(),
author="Chetan",
author_email="chetan@omkar.cloud",
maintainer="Chetan",
maintainer_email="chetan@omkar.cloud",
license="MIT",
python_requires=">=3.5",
keywords=[
"tls", "client", "http", "scraping", "requests", "humans"
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Internet :: WWW/HTTP :: Browsers",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
install_requires=[
"httpx",
"geventhttpclient",
"urllib3",
"rich",
"beautifulsoup4>=4.11.2",
"click",
"gevent"
],
url="https://github.com/omkarcloud/botasaurus-requests",
project_urls={
"Homepage": "https://github.com/omkarcloud/botasaurus-requests",
"Bug Reports": "https://github.com/omkarcloud/botasaurus-requests/issues",
"Source": "https://github.com/omkarcloud/botasaurus-requests"
},
packages=find_packages(include=["botasaurus_requests"]),
include_package_data=True,
)