-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 924 Bytes
/
setup.py
File metadata and controls
32 lines (31 loc) · 924 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
26
27
28
29
30
31
32
from setuptools import setup, find_packages
setup(
name="peakflo_project",
version="0.1.0",
packages=find_packages(),
install_requires=[
"groq>=0.4.0",
"openai-whisper>=20231117",
"gtts>=2.5.0",
"sounddevice>=0.4.6",
"soundfile>=0.12.1",
"pydub>=0.25.1",
"httpx>=0.26.0",
"pydantic>=2.5.0",
"python-dotenv>=1.0.0",
"PyYAML>=6.0",
"loguru>=0.7.0",
"rich>=13.7.0",
],
python_requires=">=3.8",
author="Utkarsh Singh",
author_email="utkarsh.workmail.1@gmail.com",
description="Voice-enabled AR automation agent using MCP",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/Hustple/peakflo_project",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)