-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (35 loc) · 1.02 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
32
33
34
35
36
from setuptools import setup, find_packages
setup(
name="asr2clip",
version="0.3.5",
author="Oaklight",
author_email="[email protected]",
description="A real-time speech-to-text clipboard tool.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/Oaklight/asr2clip",
packages=find_packages(),
install_requires=[
"numpy>=1.24.4",
"openai>=1.59.6",
"pyperclip>=1.9.0",
"PyYAML>=6.0.2",
"requests>=2.32.3",
"scipy>=1.10.1",
"sounddevice>=0.5.1",
"pydub>=0.25.1",
"ffmpeg>=1.4",
],
entry_points={
"console_scripts": [
"asr2clip=asr2clip.asr2clip:main",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
],
license="GNU Affero General Public License v3",
python_requires=">=3.8",
)