Skip to content

Commit 428e147

Browse files
committed
Add LICENSE and README.md to source distribution
1 parent c06237e commit 428e147

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include LICENSE README.md

cfscrape/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
except ImportError:
1313
from urllib.parse import urlparse
1414

15-
__version__ = "1.9.2"
15+
__version__ = "1.9.3"
1616

1717
DEFAULT_USER_AGENTS = [
1818
"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36",

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
setup(
44
name = 'cfscrape',
55
packages = ['cfscrape'],
6-
version = '1.9.2',
6+
version = '1.9.3',
77
description = 'A simple Python module to bypass Cloudflare\'s anti-bot page. See https://github.com/Anorov/cloudflare-scrape for more information.',
88
author = 'Anorov',
99
author_email = '[email protected]',
1010
url = 'https://github.com/Anorov/cloudflare-scrape',
1111
keywords = ['cloudflare', 'scraping'],
12+
include_package_data = True,
1213
install_requires = ['PyExecJS >= 1.4.0', 'requests >= 2.0.0']
1314
)

0 commit comments

Comments
 (0)