4 Commits
v0.1 ... v0.1.2

Author SHA1 Message Date
JustAnotherArchivist
d17aa15bcb Version 0.1.2 2018-09-11 12:44:07 +02:00
JustAnotherArchivist
d1ef280d6e Fix snscrape.modules not getting installed 2018-09-11 12:43:10 +02:00
JustAnotherArchivist
2823272e0b Version 0.1.1 2018-09-11 12:30:35 +02:00
JustAnotherArchivist
540f557002 Fix typo in setup.py preventing installation 2018-09-11 12:30:21 +02:00

View File

@@ -3,16 +3,16 @@ import setuptools
setuptools.setup(
name = 'snscrape',
version = '0.1',
version = '0.1.2',
description = 'A social networking service scraper',
author = 'JustAnotherArchivist',
url = 'https://github.com/JustAnotherArchivist/snscrape',
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)'.
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3.6',
],
packages = ['snscrape'],
packages = ['snscrape', 'snscrape.modules'],
install_requires = ['requests', 'lxml', 'beautifulsoup4'],
entry_points = {
'console_scripts': [