forked from salute-developers/GigaAM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 798 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 798 Bytes
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
import pkg_resources
from setuptools import find_packages, setup
setup(
name="gigaam",
py_modules=["gigaam"],
version="0.1.0",
description="GigaAM: A package for audio modeling and ASR.",
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
readme="README.md",
author="GigaChat Team",
url="https://github.com/salute-developers/GigaAM/",
license="MIT",
packages=find_packages(include=["gigaam"]),
python_requires=">=3.8",
install_requires=[
str(r)
for r in pkg_resources.parse_requirements(
open("requirements.txt", "r", encoding="utf-8").read()
)
],
extras_require={"longform": ["pyannote.audio", "pydub"]},
include_package_data=True,
)