-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
maint: make requirements sphinx>=2 traitlets>=4 explicit
- Loading branch information
1 parent
be97348
commit 9cfdfd8
Showing
1 changed file
with
9 additions
and
7 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 |
---|---|---|
|
@@ -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]"}, | ||
] | ||
|
@@ -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 = [ | ||
|
@@ -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 | ||
|
@@ -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/ | ||
|