Skip to content

Commit

Permalink
loosen requirements
Browse files Browse the repository at this point in the history
bump version
  • Loading branch information
shinyfoil committed Nov 6, 2020
1 parent 5fd065c commit 0bd93cc
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
2 changes: 1 addition & 1 deletion iconetl/cli/__init__.py
Expand Up @@ -31,7 +31,7 @@


@click.group()
@click.version_option(version="0.1.2")
@click.version_option(version="0.1.3")
@click.pass_context
def cli(ctx):
pass
Expand Down
17 changes: 12 additions & 5 deletions setup.py
Expand Up @@ -11,7 +11,7 @@ def read(fname):

setup(
name="icon-etl",
version="0.1.2",
version="0.1.3",
packages=find_packages(exclude=["schemas", "tests"]),
url="https://github.com/insight-icon/icon-etl",
author="Richard Mah",
Expand All @@ -22,14 +22,17 @@ def read(fname):
python_requires=">=3.6.0,<3.8.0",
install_requires=[
"blockchain-etl-common==1.3.0",
"requests==2.20.0",
"python-dateutil==2.7.0",
"requests>=2.20.0",
"python-dateutil>=2.7.0",
"click==7.0",
"iconsdk >= 1.3.2",
"web3 >= 5.5.0",
],
extras_require={
"streaming": ["timeout-decorator==0.4.1", "sqlalchemy==1.3.13",],
"streaming": [
"timeout-decorator==0.4.1",
"sqlalchemy==1.3.13",
],
"dev": ["pytest~=4.3.0"],
},
project_urls={
Expand All @@ -43,5 +46,9 @@ def read(fname):
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
entry_points={"console_scripts": ["iconetl=iconetl.cli:cli",],},
entry_points={
"console_scripts": [
"iconetl=iconetl.cli:cli",
],
},
)

0 comments on commit 0bd93cc

Please sign in to comment.