Initial commit

This commit is contained in:
JustAnotherArchivist
2018-02-08 13:05:00 +01:00
commit 1ae006b268
2 changed files with 221 additions and 0 deletions

15
setup.py Normal file
View File

@@ -0,0 +1,15 @@
import setuptools
setuptools.setup(
name = 'socialmediascraper',
version = '0.0-dev',
description = 'A social media scraper',
packages = ['socialmediascraper'],
install_requires = ['requests', 'lxml', 'beautifulsoup4'],
entry_points = {
'console_scripts': [
'smscrape = socialmediascraper:main',
],
},
)