Skip to content

Commit e18e3bd

Browse files
Add setup
1 parent 015f734 commit e18e3bd

File tree

2 files changed

+24
-18
lines changed

2 files changed

+24
-18
lines changed

pyproject.toml

-18
This file was deleted.

setup.py

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
from setuptools import setup, find_packages
2+
3+
with open('README.md', 'r') as f:
4+
description = f.read()
5+
6+
setup(
7+
name='fast-tts',
8+
version='0.0.1',
9+
long_description=description,
10+
long_description_content_type='text/markdown',
11+
packages=find_packages(),
12+
install_requires=[
13+
'numpy',
14+
'torch',
15+
'transformers',
16+
'soundfile',
17+
],
18+
classifiers=[
19+
'Development Status :: 3 - Alpha',
20+
'Intended Audience :: Developers',
21+
'License :: OSI Approved :: MIT License',
22+
'Programming Language :: Python :: 3.9',
23+
],
24+
)

0 commit comments

Comments
 (0)