Skip to content

Commit

Permalink
release version of 1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
erdkse committed Nov 11, 2020
1 parent 8094cef commit 4963450
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
__pycache__

.env
dist
build

scrapezone_python_sdk.egg-info
16 changes: 16 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
bleach==3.2.1
certifi==2020.6.20
chardet==3.0.4
colorama==0.4.4
docutils==0.16
idna==2.10
keyring==21.5.0
packaging==20.4
pkginfo==1.6.1
Pygments==2.7.2
pyparsing==2.4.7
python-decouple==3.3
readme-renderer==28.0
requests==2.24.0
requests-toolbelt==0.9.1
rfc3986==1.4.0
scrapezone-python-sdk==1.0.4
six==1.15.0
tqdm==4.51.0
twine==3.2.0
urllib3==1.25.11
webencodings==0.5.1
31 changes: 31 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import pathlib
from setuptools import find_packages, setup

HERE = pathlib.Path(__file__).parent

README = (HERE / "README.md").read_text()

setup(
name="scrapezone-python-sdk",
version="1.0.4",
description="Official client SDK of Scrapezone",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/Scrapezone/scrapezone-python-sdk",
author="Scrapezone",
author_email="[email protected]",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
],
packages=find_packages(exclude=("tests",)),
include_package_data=True,
install_requires=["python-decouple"],
entry_points={
"console_scripts": [
"scrapezone_python_sdk=client:__init__",
]
},
)

0 comments on commit 4963450

Please sign in to comment.