forked from yeongbin-jo/python-geckodriver-autoinstaller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (48 loc) · 1.8 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
55
56
57
# coding: utf-8
import os
import sys
from setuptools import setup
__author__ = 'Yeongbin Jo <[email protected]>'
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('geckodriver_autoinstaller.egg-info'):
shutil.rmtree('geckodriver_autoinstaller.egg-info')
setup(
name="geckodriver-autoinstaller",
version="0.1.0",
author="Yeongbin Jo",
author_email="[email protected]",
description="Automatically install geckodriver that supports the currently installed version of chrome.",
license="MIT",
keywords="geckodriver chrome selenium splinter",
url="https://github.com/yeongbin-jo/python-geckodriver-autoinstaller",
packages=['geckodriver_autoinstaller'],
entry_points={
'console_scripts': ['geckodriver-path=geckodriver_autoinstaller.utils:print_geckodriver_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.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)