Skip to content

Commit a93daff

Browse files
committed
Merge branch 'release/v20190904'
2 parents c240c17 + 5a910c7 commit a93daff

File tree

4 files changed

+22
-6
lines changed

4 files changed

+22
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
# Change Log
22

3+
## [20190904]
4+
- Fixed enum34 dependency, refs #17 (@mmxfguerin)
5+
36
## [20181226]
47
- GetVolumeStepInfo() interface fixes
5-
- IAudioEndpointVolumeCallback::OnNotify support, refs #10
8+
- Added AudioController class example, refs #4 (@lorenzsj)
9+
- IAudioEndpointVolumeCallback::OnNotify support, refs #10, #11 (@csevast)
610
- Setup (limited) continuous testing, refs #12
711

812
## [20160929]

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
# pycaw
22

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

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

78
## Install
89

910
Latest stable release:
1011
```bash
11-
pip install https://github.com/AndreMiras/pycaw/archive/master.zip
12+
pip install pycaw
1213
```
1314

1415
Development branch:

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
comtypes==1.1.3.post2
2-
enum34==1.1.4
2+
enum34;python_version<"3.4"
33
psutil==5.4.8
44
future==0.15.2

setup.py

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,22 @@
11
#!/usr/bin/env python
2+
import os
23

3-
from distutils.core import setup
4+
from setuptools import setup
45

6+
7+
def read(fname):
8+
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
9+
return f.read()
10+
11+
12+
install_requires = [
13+
'comtypes', 'enum34;python_version<"3.4"', 'psutil', 'future']
514
setup(name='pycaw',
6-
version='20181226',
15+
version='20190904',
716
description='Python Core Audio Windows Library',
17+
long_description=read('README.md'),
18+
long_description_content_type='text/markdown',
819
author='Andre Miras',
920
url='https://github.com/AndreMiras/pycaw',
1021
packages=['pycaw'],
11-
install_requires=['comtypes', 'enum34', 'psutil', 'future'])
22+
install_requires=install_requires)

0 commit comments

Comments
 (0)