diff --git a/CHANGELOG.md b/CHANGELOG.md index aa3a815..fc093ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## Table of Contents +- [v2.2.11](#v2211) - [v2.2.10](#v2210) - [v2.2.7](#v227) - [v2.2.6](#v226) @@ -17,11 +18,17 @@ - [v2.0.0](#v200) - [v0.1.0](#v010) +## v2.2.11 + +- Fix: Include README in setup.py config + + ## v2.2.10 - Fix: User-Agent format - Fix: Version update messages and README + ## v2.2.7 - Enhancement: Add User-Agent to API requests diff --git a/protonvpn_cli/constants.py b/protonvpn_cli/constants.py index d788635..abcd45d 100644 --- a/protonvpn_cli/constants.py +++ b/protonvpn_cli/constants.py @@ -18,4 +18,4 @@ OVPN_FILE = os.path.join(CONFIG_DIR, "connect.ovpn") PASSFILE = os.path.join(CONFIG_DIR, "pvpnpass") CLIENT_SUFFIX = "plc" # ProtonVPN Linux Community -VERSION = "2.2.10" +VERSION = "2.2.11" diff --git a/setup.py b/setup.py index 41c2a1b..197cbcb 100644 --- a/setup.py +++ b/setup.py @@ -29,9 +29,11 @@ entry_points={ "console_scripts": ["protonvpn = protonvpn_cli.cli:main"] }, + include_package_data=True, version=version, description="Linux command-line client for ProtonVPN", long_description=long_descr, + long_description_content_type="text/markdown", author="Proton Technologies AG", author_email="contact@protonvpn.com", license="GPLv3",