Skip to content

Commit

Permalink
Add LICENSE and README.md to source distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
Anorov committed Jan 31, 2018
1 parent c06237e commit 428e147
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include LICENSE README.md
2 changes: 1 addition & 1 deletion cfscrape/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
except ImportError:
from urllib.parse import urlparse

__version__ = "1.9.2"
__version__ = "1.9.3"

DEFAULT_USER_AGENTS = [
"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36",
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@
setup(
name = 'cfscrape',
packages = ['cfscrape'],
version = '1.9.2',
version = '1.9.3',
description = 'A simple Python module to bypass Cloudflare\'s anti-bot page. See https://github.com/Anorov/cloudflare-scrape for more information.',
author = 'Anorov',
author_email = '[email protected]',
url = 'https://github.com/Anorov/cloudflare-scrape',
keywords = ['cloudflare', 'scraping'],
include_package_data = True,
install_requires = ['PyExecJS >= 1.4.0', 'requests >= 2.0.0']
)

0 comments on commit 428e147

Please sign in to comment.