-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (28 loc) · 1022 Bytes
/
Copy pathsetup.py
File metadata and controls
33 lines (28 loc) · 1022 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/env python
import os
from setuptools import find_packages, setup
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname), encoding="utf-8") as f:
return f.read()
install_requires = ["comtypes>=1.1.11", "psutil>=5.9.0"]
setup(
name="pycaw",
version="20260921.dev0",
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=find_packages(exclude=("tests", "examples")),
python_requires=">=3.10",
platforms=["Windows"],
classifiers=[
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
install_requires=install_requires,
)