Skip to content

Commit

Permalink
maint: make requirements sphinx>=2 traitlets>=4 explicit
Browse files Browse the repository at this point in the history
  • Loading branch information
consideRatio committed Dec 11, 2022
1 parent be97348 commit 9cfdfd8
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,7 @@
[project]
name = "autodoc-traits"
description = "Sphinx extension to autodoc traitlets"
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE"}
keywords = ["repo2docker", "jupyterhub"]
keywords = ["sphinx", "extension", "autodoc", "traitlets"]
authors = [
{name = "Jupyter Development Team", email = "[email protected]"},
]
Expand All @@ -17,11 +14,14 @@ classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
readme = "README.md"
license = {file = "LICENSE"}
dynamic = ["version"]
requires-python = ">=3.7"
dependencies = [
"sphinx",
"traitlets",
"sphinx>=2",
"traitlets>=4",
]
dynamic = ["version"]

[project.optional-dependencies]
test = [
Expand All @@ -46,6 +46,7 @@ build-backend = "hatchling.build"
[tool.hatch.version]
path = "autodoc_traits.py"


# autoflake is used for autoformatting Python code
#
# ref: https://github.com/PyCQA/autoflake#readme
Expand All @@ -56,6 +57,7 @@ remove-all-unused-imports = true
remove-duplicate-keys = true
#remove-unused-variables = true


# isort is used for autoformatting Python code
#
# ref: https://pycqa.github.io/isort/
Expand Down

0 comments on commit 9cfdfd8

Please sign in to comment.