Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

version bumping #160

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# file GENERATED by distutils, do NOT edit
README.rst
setup.cfg
setup.py
finviz/__init__.py
finviz/config.py
finviz/main_func.py
finviz/portfolio.py
finviz/screener.py
finviz/helper_functions/__init__.py
finviz/helper_functions/display_functions.py
finviz/helper_functions/error_handling.py
finviz/helper_functions/request_functions.py
finviz/helper_functions/save_data.py
finviz/helper_functions/scraper_functions.py
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "finviz"
version = "1.4.4"
version = "1.4.7"
description = "Unofficial API for finviz.com"
authors = ["Mario Stoev <[email protected]>", "James Bury <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
finviz~=1.4.4
finviz~=1.4.7
beautifulsoup4~=4.9.3
requests~=2.25.1
aiohttp~=3.7.4
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Inside of setup.cfg
[metadata]
description-file = README.rst
description-file=README.rst
license_files=LICENSE
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
setup(
name="finviz",
packages=["finviz", "finviz.helper_functions"],
version="1.4.4",
version="1.4.7",
license="MIT",
description="Unofficial API for FinViz.com",
author="Mario Stoev, James Bury",
author_email="[email protected], [email protected]",
url="https://github.com/mariostoev/finviz",
download_url="https://github.com/mariostoev/finviz/archive/1.4.4.tar.gz",
download_url="https://github.com/mariostoev/finviz/archive/v1.4.7.tar.gz",
keywords=["finviz", "api", "screener", "finviz api", "charts", "scraper"],
install_requires=[
"lxml",
Expand Down