Skip to content

Commit bad5a24

Browse files
author
Alexandru Cheltuitor
committed
Merge branch 'long-description' into 'master'
Add description for pypi See merge request ProtonVPN/linux/proton-python-client!30
2 parents f0376fe + cfb98e2 commit bad5a24

File tree

6 files changed

+17
-11
lines changed

6 files changed

+17
-11
lines changed

arch/PKGBUILD

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Maintainer: Proton Technologies AG <[email protected]>
22
pkgname=python-proton-client
3-
pkgver=0.4.0
3+
pkgver=0.4.1
44
pkgrel=1
55
pkgdesc="Safely login with ProtonVPN credentials to connect to Proton."
66
arch=("any")

debian/changelog

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
proton-python-client (0.4.0-1) unstable; urgency=medium
1+
proton-python-client (0.4.1-1) unstable; urgency=medium
2+
3+
* Add long description to setup.py
4+
5+
-- Proton Technologies AG <[email protected]> Wed, 21 Apr 2021 13:45:00 +0100
6+
7+
proton-python-client (0.4.0-1) unstable; urgency=medium
28

39
* Add proxy support
410
* Verify fingerprint of signer key

proton/constants.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
VERSION = "0.4.0"
2+
VERSION = "0.4.1"
33
DEFAULT_TIMEOUT = (10, 30)
44
PUBKEY_HASH_DICT = {
55
"api.protonvpn.ch": [

rpmbuild/SPECS/python3-proton-client.spec

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
%define unmangled_name proton-client
2-
%define version 0.4.0
2+
%define version 0.4.1
33
%define release 1
44

55
Prefix: %{_prefix}
@@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT
4848
%defattr(-,root,root)
4949

5050
%changelog
51+
* Wed Apr 21 2021 Proton Technologies AG <[email protected]> 0.4.1-1
52+
- Add long description to setup.py
53+
5154
* Mon Apr 19 2021 Proton Technologies AG <[email protected]> 0.4.0-1
5255
- Add proxy support
5356
- Verify fingerprint of signer key

setup.cfg

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[metadata]
2+
long_description = file: README.md
3+
long_description_content_type = text/markdown
4+

setup.py

-7
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,13 @@
33
from setuptools import setup, find_packages
44
from proton.constants import VERSION
55

6-
long_description = """
7-
8-
This package, originally forked from python-srp module implements a simple
9-
wrapper to the Proton Technologies API, abstracting from the SRP authentication.
10-
""" # noqa
11-
126
setup(
137
name="proton-client",
148
version=VERSION,
159
description="Proton Technologies API wrapper",
1610
author="Proton Technologies",
1711
author_email="[email protected]",
1812
url="https://github.com/ProtonMail/proton-python-client",
19-
long_description=long_description,
2013
install_requires=["requests", "bcrypt", "python-gnupg", "pyopenssl"],
2114
packages=find_packages(),
2215
include_package_data=True,

0 commit comments

Comments
 (0)