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.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..f8b04b8 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.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/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",