diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2020-12-28 15:22:49 +0000 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2020-12-28 15:22:49 +0000 |
| commit | ab0611a9d597bf0e3c78bb3d01e857f4727bb2d3 (patch) | |
| tree | ec804b5bf5f15308c5a85928e4ce009bd9c8eb06 /setup.py | |
| parent | Update badge in readme (diff) | |
| parent | Bump version and update changelog and readme (diff) | |
| download | paper2remarkable-ab0611a9d597bf0e3c78bb3d01e857f4727bb2d3.tar.gz paper2remarkable-ab0611a9d597bf0e3c78bb3d01e857f4727bb2d3.zip | |
Merge branch 'master' into feature/gh_actions
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 16 |
1 files changed, 9 insertions, 7 deletions
@@ -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"] @@ -86,6 +87,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"]}, |
