-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
26 lines (25 loc) · 1.01 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
from setuptools import setup, find_packages
with open('requirements.txt', 'r') as f:
reqs = f.read()
# with open('LICENSE', 'r') as f:
# legal = f.read()
with open('README.md', 'r', encoding="utf-8") as f:
readme = f.read()
setup(
name='reading4listeners',
version='0.0.5a0',
packages=find_packages(include=['reading4listeners','reading4listeners.*']),
url='https://github.com/CypherousSkies/reading-for-listeners',
project_urls={
"Bug Tracker": "https://github.com/CypherousSkies/reading-for-listeners/issues",
},
# license=legal,
license='AGPL-3',
author='CypherousSkies',
author_email="5472563+CypherousSkies@users.noreply.github.com",
description='A deep-learning powered application which turns pdfs into audio files. Featuring ocr improvement and tts with inflection!',
long_description=readme,
long_description_content_type="text/markdown",
install_requires=reqs,
entry_points={"console_scripts": ["r4l = reading4listeners.bin.cli:main"], }
)