This repository was archived by the owner on Jun 29, 2025. It is now read-only.
forked from yeongbin-jo/python-chromedriver-autoinstaller
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
62 lines (53 loc) · 2.03 KB
/
setup.py
File metadata and controls
62 lines (53 loc) · 2.03 KB
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
55
56
57
58
59
60
61
62
# coding: utf-8
import os
import sys
from setuptools import setup
__author__ = 'Yeongbin Jo <iam.yeongbin.jo@gmail.com>'
with open('README.md') as readme_file:
long_description = readme_file.read()
# 'setup.py publish' shortcut.
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist bdist_wheel')
os.system('twine upload dist/*')
sys.exit()
elif sys.argv[-1] == 'clean':
import shutil
if os.path.isdir('build'):
shutil.rmtree('build')
if os.path.isdir('dist'):
shutil.rmtree('dist')
if os.path.isdir('edgedriver_autoinstaller.egg-info'):
shutil.rmtree('edgedriver_autoinstaller.egg-info')
setup(
name="edgedriver-autoinstaller",
version="0.2.1",
author="Federico Capece",
author_email="capece.1744999@studenti.uniroma1.it",
description="Automatically install edgedriver that supports the currently installed version of edge.",
license="MIT",
keywords="edgedriver edge selenium splinter",
url="https://github.com/fc-dev/python-edgedriver-autoinstaller",
packages=['edgedriver_autoinstaller'],
entry_points={
'console_scripts': ['edgedriver-path=edgedriver_autoinstaller.utils:print_edgedriver_path'],
},
long_description_content_type='text/markdown',
long_description=long_description,
python_requires='>=3',
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.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
install_requires=["requests"],
)