From d4ec7308e433a27b84003c49e85517ec4bf54d3e Mon Sep 17 00:00:00 2001 From: James Bury Date: Sat, 8 Apr 2023 08:22:40 -0400 Subject: [PATCH 1/2] Version bump --- setup.cfg | 3 ++- setup.py | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index b93be30..dc3db1b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,3 +1,4 @@ # Inside of setup.cfg [metadata] -description-file = README.rst +description-file=README.rst +license_files=LICENSE diff --git a/setup.py b/setup.py index be70ac8..bbe311d 100644 --- a/setup.py +++ b/setup.py @@ -3,13 +3,13 @@ setup( name="finviz", packages=["finviz", "finviz.helper_functions"], - version="1.4.4", + version="1.4.6", license="MIT", description="Unofficial API for FinViz.com", author="Mario Stoev, James Bury", author_email="bg.mstoev@gmail.com, jabury@sympatico.ca", 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.6.tar.gz", keywords=["finviz", "api", "screener", "finviz api", "charts", "scraper"], install_requires=[ "lxml", From 9017799fb04f2bfaec4c06257c091cb3e767defb Mon Sep 17 00:00:00 2001 From: James Bury Date: Sat, 8 Apr 2023 08:34:09 -0400 Subject: [PATCH 2/2] version bumps --- MANIFEST | 15 +++++++++++++++ pyproject.toml | 2 +- requirements.txt | 2 +- setup.py | 4 ++-- 4 files changed, 19 insertions(+), 4 deletions(-) create mode 100644 MANIFEST diff --git a/MANIFEST b/MANIFEST new file mode 100644 index 0000000..49527c4 --- /dev/null +++ b/MANIFEST @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 37080af..3639fcf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 ", "James Bury "] license = "MIT" diff --git a/requirements.txt b/requirements.txt index 792a5a9..6c735d0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -finviz~=1.4.4 +finviz~=1.4.7 beautifulsoup4~=4.9.3 requests~=2.25.1 aiohttp~=3.7.4 diff --git a/setup.py b/setup.py index bbe311d..f8b04b8 100644 --- a/setup.py +++ b/setup.py @@ -3,13 +3,13 @@ setup( name="finviz", packages=["finviz", "finviz.helper_functions"], - version="1.4.6", + version="1.4.7", license="MIT", description="Unofficial API for FinViz.com", author="Mario Stoev, James Bury", author_email="bg.mstoev@gmail.com, jabury@sympatico.ca", url="https://github.com/mariostoev/finviz", - download_url="https://github.com/mariostoev/finviz/archive/v1.4.6.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",