-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
34 lines (33 loc) · 1007 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
30
31
32
33
34
from setuptools import setup, find_packages
setup(
name='paper2speech',
version='0.2.0',
description='Convert pdf papers and books to speech using Nougat and Google Cloud Text to Speech',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/kaieberl/paper2speech',
author='Kai Eberl',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
py_modules=["paper2speech"],
install_requires=[
'nougat',
'transformers<=4.38.2',
'nougat-ocr==0.1.8',
'beautifulsoup4',
'markdown-it-py[plugins]',
'google-cloud-texttospeech',
'google-auth'
],
entry_points={
"console_scripts": [
"paper2speech = paper2speech:main",
],
},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
)