forked from breuerfelix/chromedriver-py
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
30 lines (24 loc) · 957 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
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='instapy-chromedriver',
version=package_version,
description='chromedriver binaries for instapy',
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 instapy',
url='https://github.com/InstaPy/instapy-chromedriver',
author='Felix Breuer',
author_email='[email protected]',
packages=['instapy_chromedriver'],
install_requires=[],
include_package_data=True,
zip_safe=False)