Skip to content

Commit

Permalink
Add manifest for requirements.txt and Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
linknum23 committed Jul 17, 2024
1 parent 0964c31 commit 14fd06c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
include requirements.txt
include requirements-dev.txt
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import os
import sys

VERSION = '0.4.10'
VERSION = '0.4.11'
NAME = 'pyamplipi'

try:
Expand All @@ -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


Expand All @@ -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='[email protected]',
license='GPL',
Expand Down

0 comments on commit 14fd06c

Please sign in to comment.