Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
has-abi committed Jan 11, 2023
1 parent 022fdb6 commit 6fe0a9c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,18 @@ def _open(subpath):
with _open("requirements-dev.txt") as file:
dev_reqs = file.read().strip().split("\n")

with _open("README.md") as f:
readme = f.read()

setup(
name="docparser",
version="0.1.0",
author="Hassane Abida",
author_email="[email protected]",
url="https://github.com/has-abi",
description="Parse DOC and DOCX files",
description="Extract text from your docx document.",
long_description=readme,
long_description_content_type="text/markdown",
python_requires=">=3.7",
tests_require=base_reqs + dev_reqs,
install_requires=base_reqs,
Expand Down

0 comments on commit 6fe0a9c

Please sign in to comment.