Skip to content

Commit d5e5f7b

Browse files
committed
Make epydoc and wheel direct dependencies of pyflyby
1 parent 72bc1b4 commit d5e5f7b

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

pyproject.toml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,12 @@ classifiers = [
2525
"Operating System :: OS Independent",
2626
]
2727
dependencies = [
28+
"black",
2829
"six",
2930
"toml",
30-
"black",
31-
"typing_extensions>=4.6; python_version<'3.12'"
31+
"typing_extensions>=4.6; python_version<'3.12'",
32+
'epydoc',
33+
'wheel', # required by epydoc, but not listed as a dependency
3234
]
3335
[project.urls]
3436
Homepage = "https://pypi.org/project/pyflyby/"
@@ -43,7 +45,6 @@ py3 = "pyflyby._py:py_main"
4345
test = [
4446
'build',
4547
'coverage',
46-
'epydoc',
4748
'flaky',
4849
'hypothesis',
4950
'ipykernel>=5.4.3',
@@ -64,7 +65,7 @@ lint = [
6465
'flake8',
6566
'mypy',
6667
'pyflakes',
67-
'types-six'
68+
'types-six',
6869
]
6970
docs = [
7071
'sphinx',

0 commit comments

Comments
 (0)