-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
49 lines (42 loc) · 1.57 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
from setuptools import setup
__author__ = "Chetan Jain <[email protected]>"
install_requires = [
"javascript_fixes",
]
extras_require = {}
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_proxy_authentication",
version='1.0.15',
author="Chetan Jain",
author_email="[email protected]",
description="Proxy Server with support for SSL, proxy authentication and upstream proxy.",
license="MIT",
keywords=["seleniumwire proxy authentication", "proxy authentication"],
url="https://github.com/omkarcloud/botasaurus-proxy-authentication",
packages=["botasaurus_proxy_authentication"],
long_description_content_type="text/markdown",
long_description=get_description(),
python_requires=">=3.6",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Testing",
"Topic :: System :: Installation/Setup",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
install_requires=install_requires,
extras_require=extras_require,
)