-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
42 lines (38 loc) · 1.24 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
from setuptools import setup
from setuptools import find_packages
name = "get-chrome-driver"
version = "1.4"
with open("README.md", "r") as fh:
long_description = fh.read()
requires = [
"beautifulsoup4==4.12.3",
"requests==2.32.3",
"urllib3==2.2.3",
"typer==0.15.1",
]
setup(
name=name,
version=version,
author="Zairon Jacobs",
author_email="zaironjacobs@gmail.com",
description="A tool to download and install ChromeDriver.",
long_description=long_description,
url="https://github.com/zaironjacobs/get-chrome-driver",
download_url=f"https://github.com/zaironjacobs/get-chrome-driver/archive/v{version}.tar.gz",
keywords=["chrome", "chromedriver", "download", "install", "web", "driver", "tool"],
packages=find_packages(),
entry_points={
"console_scripts": [f"{name}=get_chrome_driver.app:app"],
},
install_requires=requires,
license="MIT",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
"Natural Language :: English",
],
python_requires=">=3",
)