diff --git a/.readthedocs.yml b/.readthedocs.yml new file mode 100644 index 0000000..a379070 --- /dev/null +++ b/.readthedocs.yml @@ -0,0 +1,18 @@ +# .readthedocs.yml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +# Build documentation in the docs/ directory with Sphinx +sphinx: + configuration: docs/source/conf.py + +# Optionally build your docs in additional formats such as PDF +formats: + - pdf + +# Optionally set the version of Python and requirements required to build your docs +python: + version: 3.7 diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst index 9265c0f..aa6bd68 100644 --- a/CONTRIBUTORS.rst +++ b/CONTRIBUTORS.rst @@ -1,8 +1,9 @@ -1 contributors +2 contributors ================================================================================ In alphabetical order: * `John Vandenberg `_ +* `Peter Carnesciali `_ diff --git a/requirements.txt b/requirements.txt index 65ffc34..4c06b39 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ pyexcel-io>=0.6.2 -xlrd<2 +xlrd xlwt diff --git a/setup.py b/setup.py index f88e4ab..135f172 100644 --- a/setup.py +++ b/setup.py @@ -69,7 +69,7 @@ PYTHON_REQUIRES = ">=3.6" INSTALL_REQUIRES = [ "pyexcel-io>=0.6.2", - "xlrd<2", + "xlrd", "xlwt", ] SETUP_COMMANDS = {}