Skip to content

Commit

Permalink
Add docs extras
Browse files Browse the repository at this point in the history
Signed-off-by: Tsuyoshi Hombashi <tsuyoshi.hombashi@gmail.com>
  • Loading branch information
thombashi committed May 1, 2024
1 parent 102f8b7 commit 7b46240
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ def get_release_command_class():
with open(os.path.join(REQUIREMENT_DIR, "test_requirements.txt")) as f:
tests_requires = [line.strip() for line in f if line.strip()]

with open(os.path.join(REQUIREMENT_DIR, "docs_requirements.txt")) as f:
docs_requires = [line.strip() for line in f if line.strip()]

build_exe_requires = ["pyinstaller>=4.7,<7"]
color_requires = ["Pygments>=2.2.0,<3"]

Expand Down Expand Up @@ -66,6 +69,7 @@ def get_release_command_class():
"all": color_requires,
"buildexe": build_exe_requires,
"color": color_requires,
"docs": docs_requires,
"test": tests_requires,
},
classifiers=[
Expand Down

0 comments on commit 7b46240

Please sign in to comment.