Skip to content

Commit

Permalink
version 1.0.5 released
Browse files Browse the repository at this point in the history
  • Loading branch information
erdkse committed Nov 11, 2020
1 parent 4963450 commit fcb7106
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Send a request with up to 1,000 URLs and receive the raw, unblocked HTML files.
## Example request:

```
from client import ScrapezoneClient
from scrapezone_client import ScrapezoneClient
from decouple import config
username = config('SCRAPEZONE_USERNAME')
Expand Down
3 changes: 3 additions & 0 deletions scrapezone_client/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
__version__ = "1.0.5"

from .client import ScrapezoneClient
File renamed without changes.
10 changes: 3 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name="scrapezone-python-sdk",
version="1.0.4",
version="1.0.5",
description="Official client SDK of Scrapezone",
long_description=README,
long_description_content_type="text/markdown",
Expand All @@ -20,12 +20,8 @@
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
],
packages=find_packages(exclude=("tests",)),
packages=["scrapezone_client"],
include_package_data=True,
install_requires=["python-decouple"],
entry_points={
"console_scripts": [
"scrapezone_python_sdk=client:__init__",
]
},
zip_safe=False
)
2 changes: 1 addition & 1 deletion test.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from client import ScrapezoneClient
from scrapezone_client import ScrapezoneClient
from decouple import config

username = config('SCRAPEZONE_USERNAME')
Expand Down

0 comments on commit fcb7106

Please sign in to comment.