-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (40 loc) · 1.15 KB
/
setup.py
File metadata and controls
41 lines (40 loc) · 1.15 KB
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
33
34
35
36
37
38
39
40
41
from setuptools import setup, find_packages
setup(
name="utterly",
version="0.3.0",
packages=find_packages(),
include_package_data=True,
install_requires=[
'click~=8.1.8',
'pyaudio~=0.2.14',
'pydub~=0.25.1',
'python-dotenv~=1.1.0',
'deepgram-sdk~=3.11.0',
'numpy~=2.2.4',
'pytz~=2025.2',
'soundfile~=0.13.1',
'sounddevice~=0.5.1',
'langchain~=0.3.25',
'langchain-openai~=0.3.17',
'langchain-prompty~=0.1.1',
'httpx~=0.28.1',
'verboselogs~=1.7',
'pyyaml~=6.0.2',
],
entry_points={
'console_scripts': [
'utterly=utterly.cli:main',
],
},
author="Philip Fourie",
description="A CLI tool for managing meeting recordings, transcriptions, and summaries",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url="https://github.com/philipf/utterly",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.12",
)