diff --git a/README.rst b/README.rst index 131f9d2..4053da0 100644 --- a/README.rst +++ b/README.rst @@ -152,8 +152,14 @@ So if you receive errors like ``No matches returned for Username`` or ``No match **If you think this is an error and you should be entitled to access the services, please contact Clarivate support first and verify if you have the WWS access. Please open an issue ONLY when you have (1) verified with Clarivate support that you have WWS access; (2) verified that you are connected from the correct network.** +Disclaimer +---------- + +All product names, trademarks, and registered trademarks are the property of their respective owners. All company, product, and service names used in this document are for identification purposes only. The use of these names, trademarks, and brands do not constitute an endorsement or recommendation by the companies. + .. _ReadTheDocs: https://wos.readthedocs.io/ .. _PyPI: https://pypi.python.org/project/wos .. _user_query: https://help.incites.clarivate.com/wosWebServicesLite/WebServiceOperationsGroup/WebServiceOperations/g2/user_query.html .. _WWS: https://clarivate.com/webofsciencegroup/solutions/xml-and-apis/ + diff --git a/VERSION b/VERSION deleted file mode 100644 index 53a75d6..0000000 --- a/VERSION +++ /dev/null @@ -1 +0,0 @@ -0.2.6 diff --git a/docs/conf.py b/docs/conf.py index 0ca1573..9712dc3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -19,13 +19,10 @@ # -- Project information ----------------------------------------------------- -with open('../VERSION') as VERSION: - version = VERSION.read().strip() - -year = str(datetime.datetime.now().year) +version = '0.2.7' project = 'wos' -copyright = '%s, Enrico Bacis' % (year) +copyright = 'Product names and trademarks are the property of their respective owners.' author = 'Enrico Bacis' # The full version, including alpha/beta/rc tags diff --git a/setup.py b/setup.py index f7bb209..d2b8239 100644 --- a/setup.py +++ b/setup.py @@ -5,13 +5,10 @@ long_description = README.read() long_description = long_description[long_description.index('Description'):] -with open('VERSION') as VERSION: - version = VERSION.read().strip() - suds_install_requires = ['suds'] if version_info < (3, 0) else ['suds-py3'] setup(name='wos', - version=version, + version='0.2.7', description='Web of Science client using API v3.', long_description=long_description, install_requires=['limit'] + suds_install_requires,