-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.py
24 lines (21 loc) · 846 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
print(setuptools.find_packages())
setuptools.setup(name='pdfviewer',
version='0.1',
description='Tkinter based GUI to view PDF files',
url='https://github.com/naiveHobo/pdfviewer.git',
author='naiveHobo',
license='MIT',
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
install_requires=[
'Pillow',
'pdfplumber',
'PyPDF2',
'pytesseract'
],
zip_safe=False)