1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
import os
import re
from setuptools import setup, find_packages
from io import open
with open(os.path.join(os.path.dirname(__file__), 'cloudscraper', '__init__.py')) as fp:
VERSION = re.match(r'.*__version__ = \'(.*?)\'', fp.read(), re.S).group(1)
with open('README.md', 'r', encoding='utf-8') as fp:
readme = fp.read()
setup(
name = 'cloudscraper',
author = 'VeNoMouS',
author_email = 'venom@gen-x.co.nz',
version=VERSION,
packages = find_packages(exclude=['tests*']),
description = 'A Python module to bypass Cloudflare\'s anti-bot page.',
long_description=readme,
long_description_content_type='text/markdown',
url = 'https://github.com/venomous/cloudscraper',
keywords = [
'cloudflare',
'scraping',
'ddos',
'scrape',
'webscraper',
'anti-bot',
'waf',
'iuam',
'bypass',
'challenge'
],
include_package_data = True,
install_requires = [
'requests >= 2.9.2',
'requests_toolbelt >= 0.9.1',
'pyparsing >= 2.4.7'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)
|