diff --git a/phrasetms_client/__init__.py b/phrasetms_client/__init__.py index 886d965..920bf5a 100644 --- a/phrasetms_client/__init__.py +++ b/phrasetms_client/__init__.py @@ -14,7 +14,7 @@ """ -__version__ = "0.3.9" +__version__ = "0.3.10" # import apis into sdk package from phrasetms_client.api.additional_workflow_step_api import AdditionalWorkflowStepApi diff --git a/phrasetms_client/configuration.py b/phrasetms_client/configuration.py index 9f46b7f..1bd720e 100644 --- a/phrasetms_client/configuration.py +++ b/phrasetms_client/configuration.py @@ -423,7 +423,7 @@ def to_debug_report(self): "OS: {env}\n" "Python Version: {pyversion}\n" "Version of the API: Latest\n" - "SDK Package Version: 0.3.9".format(env=sys.platform, pyversion=sys.version) + "SDK Package Version: 0.3.10".format(env=sys.platform, pyversion=sys.version) ) def get_host_settings(self): diff --git a/pyproject.toml b/pyproject.toml index e5cb793..70e2095 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "phrasetms_client" -version = "0.3.9" +version = "0.3.10" description = "Phrase TMS API" authors = ["Martin Chrástek"] license = "NoLicense" diff --git a/setup.py b/setup.py index d1621c7..26a4304 100644 --- a/setup.py +++ b/setup.py @@ -13,6 +13,9 @@ from setuptools import setup, find_packages # noqa: H301 +from pathlib import Path +this_directory = Path(__file__).parent +long_description = (this_directory / "README.md").read_text() # To install the library, run the following # @@ -21,7 +24,7 @@ # prerequisite: setuptools # http://pypi.python.org/pypi/setuptools NAME = "phrasetms-client" -VERSION = "0.3.9" +VERSION = "0.3.10" PYTHON_REQUIRES = ">=3.7" REQUIRES = ["urllib3 >= 1.25.3", "python-dateutil", "pydantic >= 1.10.5, < 2", "aenum"] @@ -37,7 +40,5 @@ packages=find_packages(exclude=["test", "tests"]), include_package_data=True, long_description_content_type="text/markdown", - long_description="""\ - Welcome to Phrase's TMS API documentation. Please visit our [help center](https://support.phrase.com/hc/en-us/sections/5709662083612) for more information about the APIs. If you have any questions, please contact [Support](https://support.phrase.com/hc/requests/new). Please, include the `User-Agent` header with the name of your application or project. It might be a good idea to include some sort of contact information as well, so that we can get in touch if necessary. Examples of excellent `User-Agent` headers: > User-Agent: Example mobile app (example@phrase.com) <br/> User-Agent: ACME Inc Java 1.8 Client (http://acmeinc.com/contact) # noqa: E501 - """, + long_description=long_description, )