Skip to content

Fix issue #22 - Allow install with Python 2.7 #23

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,13 @@ Pypub is currently only compatible with Python 2.

Documentation is available at [http://pypub.readthedocs.org/en/latest/developer_interface.html](http://pypub.readthedocs.org/en/latest/developer_interface.html)

# Dev Setup #

To use code from a source code checkout from git

$ python -m pip install -r requirements.txt


# Copyright and License #

Copyright (c) 2020 William Cember
Expand Down
2 changes: 2 additions & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
sphinxcontrib-napoleon
-r requirements.txt
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
sphinxcontrib-napoleon
beautifulsoup4
requests
jinja2
MarkupSafe==1.1.1
beautifulsoup4==4.9.3
requests==2.22.0
jinja2==2.11.3
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@
url = 'https://github.com/wcember/pypub',
license='MIT',
install_requires=[
'beautifulsoup4',
'jinja2',
'requests',
'MarkupSafe==1.1.1',
'beautifulsoup4==4.9.3',
'jinja2==2.11.3',
'requests==2.22.0',
],
description= "Create epub's using python. Pypub is a python library to create epub files quickly without having to worry about the intricacies of the epub specification.",
)