-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (38 loc) · 1.37 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
33
34
35
36
37
38
39
from setuptools import setup, find_packages
setup(
name='fat_llama',
version='1.1.0',
packages=find_packages(),
install_requires=[
'numpy',
'cupy-cuda12x',
'pydub',
'soundfile',
'mutagen',
'scipy',
],
package_data={
'fat_llama': ['audio_fattener/*.py', 'tests/*.py'],
},
entry_points={
'console_scripts': [
'example=example:main',
],
},
author='RaAd',
author_email='[email protected]',
description='fat_llama is a Python package for upscaling audio files to FLAC or WAV formats using advanced audio processing techniques. It utilizes CUDA-accelerated calculations to enhance audio quality by upsampling and adding missing frequencies through FFT (Fast Fourier Transform), resulting in richer and more detailed audio.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/bkraad47/fat_llama',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
license='BSD-3-Clause',
)