-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (23 loc) · 776 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 setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
with open('README.rst') as f:
long_description = f.read()
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(name='wkey',
version='0.2',
description='Integrate OpenAI speech-to-text Whisper with your keyboard',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/vlad-ds/whisper-keyboard',
author='Vlad Gheorghe',
author_email='[email protected]',
license='MIT',
packages=['wkey'],
scripts=['scripts/wkey', 'scripts/fkey'],
install_requires=required,
include_package_data=True,
zip_safe=False
)