-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
32 lines (26 loc) · 908 Bytes
/
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
from setuptools import setup
CURRENT_VERSION_FILE = "./CURRENT_VERSION.txt"
with open("README.md") as f:
long_description_file = f.read()
with open(CURRENT_VERSION_FILE) as f:
package_version = f.read().strip()
setup(
name="chromedriver-py",
version=package_version,
description="chromedriver binaries for all platforms",
long_description=long_description_file,
long_description_content_type="text/markdown",
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Operating System :: OS Independent",
],
keywords="chromedriver cross-platform binaries binary",
url="http://github.com/breuerfelix/chromedriver-py",
author="Felix Breuer",
packages=["chromedriver_py"],
install_requires=[],
include_package_data=True,
zip_safe=False,
)