From a1b3a809cdb42538dd55633644e08e1b9965e41f Mon Sep 17 00:00:00 2001 From: Miguel Ballesteros Date: Fri, 1 Apr 2022 16:34:46 +0200 Subject: [PATCH] rc 0.2.1 --- docs/source/conf.py | 2 +- docs/source/requirements.txt | 1 - setup.py | 10 ++++++---- src/factiva/news/__version__.py | 2 +- 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index f259706..28025aa 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -53,7 +53,7 @@ # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. # -html_theme = 'sphinx_rtd_theme' +html_theme = 'alabaster' # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, diff --git a/docs/source/requirements.txt b/docs/source/requirements.txt index 0d76966..011a4cb 100644 --- a/docs/source/requirements.txt +++ b/docs/source/requirements.txt @@ -1,3 +1,2 @@ factiva-core factiva-news -sphinx-rtd-theme diff --git a/setup.py b/setup.py index ec7e633..c53a73a 100755 --- a/setup.py +++ b/setup.py @@ -20,6 +20,7 @@ license='MIT', author='Dos Jones Customer Engineers', author_email='customer.solutions@dowjones.com', + # Warning: the folder 'factiva' should NOT have an __init__.py file to avoid conflicts with the same namespace across other packages package_dir={'': 'src'}, packages=['factiva.news', 'factiva.news.snapshot', 'factiva.news.stream', 'factiva.news.taxonomy'], @@ -49,13 +50,14 @@ 'License :: OSI Approved :: MIT License', - 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', ], - keywords='news, news aggregator, risk, compliance, nlp, alternative data', - python_requires='>=3.6', + keywords='news, news aggregator, risk, compliance, nlp, alternative data, factiva, trading news, market movers', + python_requires='>=3.7', install_requires=[ - 'factiva-core>=0.2.0', 'fastavro', 'google-cloud-core', + 'factiva-core>=0.2.3', 'fastavro', 'google-cloud-core', 'google-cloud-pubsub', 'google-cloud-bigquery', 'pymongo' ]) diff --git a/src/factiva/news/__version__.py b/src/factiva/news/__version__.py index 7fd229a..fc79d63 100644 --- a/src/factiva/news/__version__.py +++ b/src/factiva/news/__version__.py @@ -1 +1 @@ -__version__ = '0.2.0' +__version__ = '0.2.1'