forked from brianhealey/pyamplipi
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add manifest for requirements.txt and Bump version
- Loading branch information
Showing
2 changed files
with
7 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
include requirements.txt | ||
include requirements-dev.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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='[email protected]', | ||
license='GPL', | ||
|