24 lines
678 B
Python
24 lines
678 B
Python
from setuptools import setup, find_packages
|
|
|
|
with open("requirements.txt") as f:
|
|
requirements = f.read().splitlines()
|
|
|
|
setup(
|
|
name="asr_client",
|
|
version="0.1.0",
|
|
description="extract text from audio file",
|
|
long_description_content_type="text/markdown",
|
|
author="BI",
|
|
author_email="BI@bi.ir",
|
|
url="https://git.d.aiengines.ir/bi/asr_triton_client.git",
|
|
packages=find_packages(),
|
|
install_requires=requirements,
|
|
include_package_data=True,
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
python_requires=">=3.10",
|
|
)
|