From 14fd06c402b8dee0098c55cd1da3ce0c5709b29b Mon Sep 17 00:00:00 2001 From: Lincoln Lorenz Date: Wed, 17 Jul 2024 16:39:52 -0400 Subject: [PATCH] Add manifest for requirements.txt and Bump version --- MANIFEST.in | 2 ++ setup.py | 8 +++++--- 2 files changed, 7 insertions(+), 3 deletions(-) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..2c6e426 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +include requirements.txt +include requirements-dev.txt diff --git a/setup.py b/setup.py index 8ee0a82..9ad4b10 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ import os import sys -VERSION = '0.4.10' +VERSION = '0.4.11' NAME = 'pyamplipi' try: @@ -20,7 +20,8 @@ def required(sfx=''): """ Load the requirements from the requirements.txt file""" reqs = [] with open(f"requirements{sfx}.txt") as f: - reqs = [ln.strip() for ln in f.readlines() if not ln.startswith('-') and not ln.startswith('#') and ln.strip() != ''] + reqs = [ln.strip() for ln in f.readlines() if not ln.startswith( + '-') and not ln.startswith('#') and ln.strip() != ''] return reqs @@ -46,7 +47,8 @@ def required(sfx=''): version=VERSION, description='Python API for interacting with the AmpliPi Multizone Audio Controller', url='https://github.com/brianhealey/pyamplipi', - download_url='https://github.com/brianhealey/pyamplipi/archive/{}.tar.gz'.format(VERSION), + download_url='https://github.com/brianhealey/pyamplipi/archive/{}.tar.gz'.format( + VERSION), author='HeeHee Software', author_email='brian.healey@gmail.com', license='GPL',