-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
31 lines (29 loc) · 1.04 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
from setuptools import setup, find_packages
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='speechmix',
version='0.0.32',
description='Explore different way to mix speech model(wav2vec2, hubert) and nlp model(BART,T5,GPT) together',
url='https://github.com/voidful/SpeechMix',
author='Voidful',
author_email='voidful.stack@gmail.com',
long_description=open("README.md", encoding="utf8").read(),
long_description_content_type="text/markdown",
setup_requires=['setuptools-git'],
classifiers=[
'Development Status :: 4 - Beta',
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: Apache Software License",
'Programming Language :: Python :: 3.6'
],
license="Apache",
keywords='transformer huggingface nlp speech',
packages=find_packages(),
install_requires=required,
entry_points={
},
python_requires=">=3.5.0",
zip_safe=False,
)