Squashed 'python/fsb5/' content from commit 5acfaed

git-subtree-dir: python/fsb5
git-subtree-split: 5acfaed9b44167eeebbd5f0414745cc23a2104a7
This commit is contained in:
Haoyu Xu
2025-05-01 10:40:57 +08:00
commit 57e889fb45
13 changed files with 31707 additions and 0 deletions

31
setup.py Executable file
View File

@@ -0,0 +1,31 @@
#!/usr/bin/env python3
import fsb5
from setuptools import setup, find_packages
CLASSIFIERS = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Conversion",
]
setup(
name="fsb5",
version=fsb5.__version__,
author=fsb5.__author__,
author_email=fsb5.__email__,
description="Library and to extract audio from FSB5 (FMOD Sample Bank) files",
download_url="https://github.com/HearthSim/python-fsb5/tarball/master",
license="MIT",
url="https://github.com/HearthSim/python-fsb5",
classifiers=CLASSIFIERS,
packages=find_packages(),
)