-
Notifications
You must be signed in to change notification settings - Fork 164
/
setup.py
38 lines (33 loc) · 1.03 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
from setuptools import setup
VERSION = "0.8.0"
def readme():
with open('README.md') as f:
return f.read()
setup(name='scrape_linkedin',
version=VERSION,
description='Selenium Scraper for Linkedin Profiles',
long_description=readme(),
author="Austin O'Boyle",
author_email='[email protected]',
license='MIT',
url='https://github.com/austinoboyle/scrape-linkedin-selenium',
packages=['scrape_linkedin'],
entry_points={'console_scripts': [
'scrapeli=scrape_linkedin.cli:scrape']},
keywords='linkedin selenium scraper web scraping',
# include_package_data=True,
# package_data={'scraper': ['data/*.txt']},
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3'
],
install_requires=[
'beautifulsoup4>=4.6.0',
'bs4',
'selenium',
'click',
'joblib'
]
)