-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Rebecca Graber
authored
Apr 27, 2023
1 parent
fa9bff5
commit 20040dc
Showing
2 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# .readthedocs.yaml | ||
# 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/conf.py | ||
# TODO: Fix autodoc warnings and set this to true. See https://github.com/openedx/edx-django-utils/issues/304 | ||
fail_on_warning: false | ||
|
||
python: | ||
version: 3.8 | ||
install: | ||
- requirements: requirements/doc.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -108,6 +108,7 @@ def is_requirement(line): | |
version=VERSION, | ||
description="""EdX utilities for Django Application development.""", | ||
long_description=README + '\n\n' + CHANGELOG, | ||
long_description_content_type="text/x-rst", | ||
author='edX', | ||
author_email='[email protected]', | ||
url='https://github.com/openedx/edx-django-utils', | ||
|