Skip to content

Commit

Permalink
update pyproject toml
Browse files Browse the repository at this point in the history
  • Loading branch information
yuji38kwmt committed Aug 13, 2024
1 parent 858f6a0 commit 24692ff
Show file tree
Hide file tree
Showing 5 changed files with 74 additions and 127 deletions.
20 changes: 0 additions & 20 deletions docs/api_reference/dataclass.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,6 @@ annofabapi.dataclass.input module
:members:


annofabapi.dataclass.inspection module
--------------------------------------
.. automodule:: annofabapi.dataclass.inspection
:members:

annofabapi.dataclass.instruction module
---------------------------------------
.. automodule:: annofabapi.dataclass.instruction
:members:

annofabapi.dataclass.job module
-------------------------------
.. automodule:: annofabapi.dataclass.job
Expand Down Expand Up @@ -61,11 +51,6 @@ annofabapi.dataclass.project_member module
:members:


annofabapi.dataclass.statistics module
--------------------------------------
.. automodule:: annofabapi.dataclass.statistics
:members:

annofabapi.dataclass.supplementary module
-----------------------------------------
.. automodule:: annofabapi.dataclass.supplementary
Expand All @@ -77,8 +62,3 @@ annofabapi.dataclass.task module
.. automodule:: annofabapi.dataclass.task
:members:

annofabapi.dataclass.webhook module
-----------------------------------
.. automodule:: annofabapi.dataclass.webhook
:members:

2 changes: 1 addition & 1 deletion docs/api_reference/segmentation.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
annofabapi.segmentation module
=========================
==================================================


.. automodule:: annofabapi.segmentation
Expand Down
8 changes: 3 additions & 5 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,9 @@
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
# import os
# import sys
# sys.path.insert(0, os.path.abspath('.'))

import os
import sys
sys.path.insert(0, os.path.abspath('../'))

# -- Project information -----------------------------------------------------

Expand Down Expand Up @@ -54,7 +53,6 @@
html_theme_options = {
"github_url": "https://github.com/kurusugawa-computer/annofab-api-python-client",
"use_edit_page_button": True,
"footer_items": [], # footerを空にする
}

html_logo = "img/logo_landscape.png"
Expand Down
160 changes: 62 additions & 98 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 8 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,8 @@ types-dataclasses = "*"


[tool.poetry.group.documentation.dependencies]
sphinx = "^7"
pydata-sphinx-theme = ">=0.13.3"

sphinx = {version="^8", python = ">=3.12"}
pydata-sphinx-theme = {version="*", python = ">=3.12"}

[tool.poetry.group.dev]
# 開発するときのみ必要なライブラリ。インストールしなくても開発はできるので、オプショナルにする
Expand All @@ -65,6 +64,12 @@ optional = true
[tool.poetry.group.dev.dependencies]
ipython = "*"

# [tool.poetry.group.publish]
# # PyPIにpublishするのに必要なライブラリ。インストールしなくても開発はできるので、オプショナルにする

# [tool.poetry.group.publish.dependencies]
# poetry-dynamic-versioning = "*"


[tool.mypy]
# スタブが無いパッケージのエラーは無視させる.サードパーティのライブラリに型情報がないケースもあるため
Expand Down

0 comments on commit 24692ff

Please sign in to comment.