From a8c9512f84738fdb5a7a4f5374f3a0431e1d1ea9 Mon Sep 17 00:00:00 2001 From: Eric Mesa Date: Mon, 24 Feb 2020 20:30:50 -0500 Subject: [PATCH 1/3] Updated README badges --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index e78425f..aa400e9 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,6 @@ Development branch badges:![Lint_Test](https://github.com/djotaku/ELDonationTracker/workflows/Lint_Test/badge.svg?branch=devel) -Master branch badges:![Lint_Test](https://github.com/djotaku/ELDonationTracker/workflows/Lint_Test/badge.svg) ![Linux_Build](https://github.com/djotaku/ELDonationTracker/workflows/Linux_Build/badge.svg) ![Windows_Build](https://github.com/djotaku/ELDonationTracker/workflows/Windows_Build/badge.svg) - -[![Documentation Status](https://readthedocs.org/projects/eldonationtracker/badge/?version=latest)](https://eldonationtracker.readthedocs.io/en/latest/?badge=latest) +Master branch badges:![Lint_Test](https://github.com/djotaku/ELDonationTracker/workflows/Lint_Test/badge.svg) ![Linux_Build](https://github.com/djotaku/ELDonationTracker/workflows/Linux_Build/badge.svg) ![Windows_Build](https://github.com/djotaku/ELDonationTracker/workflows/Windows_Build/badge.svg) [![Documentation Status](https://readthedocs.org/projects/eldonationtracker/badge/?version=latest)](https://eldonationtracker.readthedocs.io/en/latest/?badge=latest) ![Upload Python Package](https://github.com/djotaku/ELDonationTracker/workflows/Upload%20Python%20Package/badge.svg) Would you like to be able to update your donations in real-time during a Live Stream or while recording a Let's Play as in the following screenshots? From f3754b44de47a67559c63bb83fcc79b282c48078 Mon Sep 17 00:00:00 2001 From: Eric Mesa Date: Mon, 24 Feb 2020 20:39:03 -0500 Subject: [PATCH 2/3] Some PyPi fixes + RTD Did a test install of my PyPi package and it seems that I missed a setup requirement (because my pip requirements.txt got crowded with a bunch of stuff that wasn't needed. Also, parts of my readthedocs.io build failed and I think it was because of the same package missing from the docs requirements. --- docs/requirements.txt | 1 + pypi.rst | 7 +++++++ setup.cfg | 3 ++- 3 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 pypi.rst diff --git a/docs/requirements.txt b/docs/requirements.txt index d6cedbc..0daec9f 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,3 +1,4 @@ sphinx>=2.2 PyQt5==5.13.1 xdgenvpy==2.1.1 +PyQt5-sip==4.19.19 diff --git a/pypi.rst b/pypi.rst new file mode 100644 index 0000000..7dde158 --- /dev/null +++ b/pypi.rst @@ -0,0 +1,7 @@ +================= +eldonationtracker +================= + +ELDonation Tracker is used to provide donation information and updates when streaming or recording a VOD in OBS or XSplit. For a video explaining how to use this program, visit: http://djotaku.github.io/ELDonationTracker/ + +For documenation, see the Read The Docs page at: https://eldonationtracker.readthedocs.io/en/latest/index.html diff --git a/setup.cfg b/setup.cfg index 158ec13..f5a8f03 100644 --- a/setup.cfg +++ b/setup.cfg @@ -5,7 +5,7 @@ author-email = eric@ericmesa.com url = http://djotaku.github.io/ELDonationTracker/ version = v3.3 description = A Python-based donation tracker for Extra Life streams -long_description = http://djotaku.github.io/ELDonationTracker/ +long_description = file: pypi.rst keywords = extra life, XSplit, obs, livestreaming, video games license = GPLv3 classifiers = @@ -19,3 +19,4 @@ packages = find: install_requires = PyQt5 xdgenvpy + PyQt5-sip From e187175ed2d2a6a4cf1ed3b0e472ea2ce032bb1a Mon Sep 17 00:00:00 2001 From: Eric Mesa Date: Mon, 24 Feb 2020 20:39:58 -0500 Subject: [PATCH 3/3] =?UTF-8?q?=F0=9F=98=85=20Updating=20version=20numbers?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/conf.py | 2 +- setup.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 7a21920..f3bdf11 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -24,7 +24,7 @@ author = 'Eric Mesa' # The full version, including alpha/beta/rc tags -release = '3.3' +release = '3.3.2' # -- General configuration --------------------------------------------------- diff --git a/setup.cfg b/setup.cfg index f5a8f03..471f82c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ name = eldonationtracker author = Eric Mesa author-email = eric@ericmesa.com url = http://djotaku.github.io/ELDonationTracker/ -version = v3.3 +version = v3.3.2 description = A Python-based donation tracker for Extra Life streams long_description = file: pypi.rst keywords = extra life, XSplit, obs, livestreaming, video games