Skip to content

Commit

Permalink
Merge branch 'release/v20190904'
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreMiras committed Apr 13, 2020
2 parents c240c17 + 5a910c7 commit a93daff
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 6 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Change Log

## [20190904]
- Fixed enum34 dependency, refs #17 (@mmxfguerin)

## [20181226]
- GetVolumeStepInfo() interface fixes
- IAudioEndpointVolumeCallback::OnNotify support, refs #10
- Added AudioController class example, refs #4 (@lorenzsj)
- IAudioEndpointVolumeCallback::OnNotify support, refs #10, #11 (@csevast)
- Setup (limited) continuous testing, refs #12

## [20160929]
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
# pycaw

[![Build Status](https://travis-ci.org/AndreMiras/pycaw.svg?branch=develop)](https://travis-ci.org/AndreMiras/pycaw)
[![PyPI version](https://badge.fury.io/py/pycaw.svg)](https://badge.fury.io/py/pycaw)

Python Core Audio Windows Library, working for both Python2 and Python3.

## Install

Latest stable release:
```bash
pip install https://github.com/AndreMiras/pycaw/archive/master.zip
pip install pycaw
```

Development branch:
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
comtypes==1.1.3.post2
enum34==1.1.4
enum34;python_version<"3.4"
psutil==5.4.8
future==0.15.2
17 changes: 14 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,22 @@
#!/usr/bin/env python
import os

from distutils.core import setup
from setuptools import setup


def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.read()


install_requires = [
'comtypes', 'enum34;python_version<"3.4"', 'psutil', 'future']
setup(name='pycaw',
version='20181226',
version='20190904',
description='Python Core Audio Windows Library',
long_description=read('README.md'),
long_description_content_type='text/markdown',
author='Andre Miras',
url='https://github.com/AndreMiras/pycaw',
packages=['pycaw'],
install_requires=['comtypes', 'enum34', 'psutil', 'future'])
install_requires=install_requires)

0 comments on commit a93daff

Please sign in to comment.