From 8aa49bdfa5298c913caf0e7025f5cc1199fa5612 Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Thu, 12 Nov 2020 00:05:14 +0000 Subject: Add man page to package --- setup.py | 1 + 1 file changed, 1 insertion(+) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 54a8cb1..e79448c 100644 --- a/setup.py +++ b/setup.py @@ -86,6 +86,7 @@ setup( install_requires=REQUIRED, extras_require=EXTRAS, include_package_data=True, + data_files=[("man/man1", ["p2r.1"])], license=LICENSE, ext_modules=[], entry_points={"console_scripts": ["p2r = paper2remarkable.__main__:main"]}, -- cgit v1.2.3 From 421d8de29d17d9390cae1f56bfc98667158a8096 Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Mon, 28 Dec 2020 00:25:31 +0000 Subject: Add support for a configuration file --- setup.py | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index e79448c..e529cc2 100644 --- a/setup.py +++ b/setup.py @@ -19,17 +19,18 @@ VERSION = None # What packages are required for this module to be executed? REQUIRED = [ + "PyPDF2>=1.26", "beautifulsoup4>=4.8", - "requests>=2.21", + "html2text>=2020.1.16", + "markdown>=3.1.1", "pdfplumber>=0.5", - "unidecode>=1.1", - "titlecase>=0.12", - "PyPDF2>=1.26", - "regex>=2018.11", + "pyyaml>=5.1", "readability-lxml>=0.7.1", - "html2text>=2020.1.16", + "regex>=2018.11", + "requests>=2.21", + "titlecase>=0.12", + "unidecode>=1.1", "weasyprint>=51", - "markdown>=3.1.1", ] full_require = ["readabilipy"] -- cgit v1.2.3