forked from roel0/PCM2Wav-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 1.05 KB
/
setup.py
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
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
setup(
name='PCM2Wav',
version='1.3',
packages=find_packages(),
description="A PCM data to Wav audio format converter",
long_description=readme(),
url="https://github.com/roel0/PCM2Wav-py",
author="Roel Postelmans",
author_email="[email protected]",
license="GPL-2.0",
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Embedded Systems",
"Topic :: Utilities",
],
keywords='PCM I2S sigrok saleae wav audio',
install_requires=['wave'],
include_package_data=True,
)