-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (43 loc) · 1.36 KB
/
Copy pathsetup.py
File metadata and controls
44 lines (43 loc) · 1.36 KB
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
40
41
42
43
44
from setuptools import setup, find_packages
setup(
name='praasper',
version='0.8.2a2',
description='VAD-Enhanced ASR Framework for Researchers',
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
author='Tony Liu',
author_email='paradeluxe3726@gmail.com',
url='https://github.com/ParadeLuxe/Praasper',
packages=find_packages(),
entry_points={
'console_scripts': [
'praasper=praasper.cli:main',
],
},
install_requires=[
# NOTE: TestPyPI keeps stale copies of numpy/librosa/scipy/funasr/scikit-learn
# that break install on Python 3.12. Full e2e install from TestPyPI fails
# due to TestPyPI infrastructure — use `--no-deps` for structural verification
# only. Real PyPI installs use the unconstrained bounds below.
'numpy',
'scipy',
'torch',
'torchaudio',
'jellyfish',
'tqdm',
'textgrid',
'tiktoken',
'funasr==1.3.8',
'transformers',
'scikit-learn',
'librosa',
'soundfile',
'static-ffmpeg>=3.0',
],
license='Custom (source-available, see LICENSE file)',
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
python_requires='>=3.10,<3.13',
)