Rename from socialmediascraper to snscrape

This commit is contained in:
JustAnotherArchivist
2018-08-21 22:54:14 +02:00
parent 9fb3ac6013
commit 6b6ae3d33b
9 changed files with 21 additions and 21 deletions

View File

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