Notebooks >> Scripts
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

38 lines
1.0 KiB

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='hello@austinoboyle.com',
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'
]
)