-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
29 lines (26 loc) · 875 Bytes
/
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
from pathlib import Path
from setuptools import setup
from whisperflow import __version__
from pkg_resources import parse_requirements
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='whisperflow',
version=__version__,
url='https://github.com/dimastatz/whisper-flow',
author='Dima Statz',
author_email='dima.statz@gmail.com',
py_modules=['whisperflow'],
python_requires=">=3.8",
install_requires=[
str(r)
for r in parse_requirements(
Path(__file__).with_name("requirements.txt").open()
)
],
description='WhisperFlow: Real-Time Transcription Powered by OpenAI Whisper',
long_description = long_description,
long_description_content_type='text/markdown',
include_package_data=True,
package_data={'': ['static/*']},
)