initial commit

This commit is contained in:
Jacob Lifshay 2024-10-24 21:42:22 -07:00
commit 77b0ce2c3d
Signed by: programmerjake
SSH key fingerprint: SHA256:B1iRVvUJkvd7upMIiMqn6OyxvD2SgJkAH3ZnUOj6z+c
8 changed files with 1289 additions and 0 deletions

13
pyproject.toml Normal file
View file

@ -0,0 +1,13 @@
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "parse_powerisa_pdf"
version = "0.0.0"
dependencies = [
"pdfminer.six == 20240706"
]
[project.scripts]
parse_powerisa_pdf = "parse_powerisa_pdf.parse_powerisa_pdf:main"