-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 1.08 KB
/
setup.py
File metadata and controls
33 lines (31 loc) · 1.08 KB
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
import setuptools
from setuptools.command.install import install
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name='formfyxer',
version='1.1.1',
author='Suffolk LIT Lab',
author_email='litlab@suffolk.edu',
description='A tool for learning about and pre-processing pdf forms.',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/SuffolkLITLab/FormFyxer',
project_urls = {
"Bug Tracker": "https://github.com/SuffolkLITLab/FormFyxer/issues"
},
license='MIT',
packages=['formfyxer'],
install_requires=['pdfminer.six', 'pandas', 'pikepdf',
'textstat', 'requests', 'numpy',
'boxdetect', 'pdf2image', 'reportlab>=3.6.13', 'pdfminer.six',
'opencv-python-headless', 'ocrmypdf', 'eyecite', 'sigfig',
'openai', 'python-dotenv', 'python-docx', 'tiktoken', 'transformers'
],
entry_points={
'console_scripts': [
'formfyxer=formfyxer.cli:main',
],
},
include_package_data = True
)