mirror of
https://github.com/bellingcat/snscrape.git
synced 2026-06-08 02:28:29 +03:00
26 lines
720 B
Python
26 lines
720 B
Python
import setuptools
|
|
|
|
|
|
setuptools.setup(
|
|
name = 'snscrape',
|
|
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+)',
|
|
'Programming Language :: Python :: 3.8',
|
|
'Programming Language :: Python :: 3.9',
|
|
],
|
|
packages = ['snscrape', 'snscrape.modules'],
|
|
setup_requires = ['setuptools_scm'],
|
|
use_scm_version = True,
|
|
install_requires = ['requests[socks]', 'lxml', 'beautifulsoup4'],
|
|
python_requires = '~=3.8',
|
|
entry_points = {
|
|
'console_scripts': [
|
|
'snscrape = snscrape._cli:main',
|
|
],
|
|
},
|
|
)
|