mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2026-09-03 20:52:55 -05:00
Fix utils package is installed
This commit is contained in:
@@ -26,6 +26,7 @@ Bugs fixed
|
|||||||
* #4472: DOCUMENTATION_OPTIONS is not defined
|
* #4472: DOCUMENTATION_OPTIONS is not defined
|
||||||
* #4491: autodoc: prefer _MockImporter over other importers in sys.meta_path
|
* #4491: autodoc: prefer _MockImporter over other importers in sys.meta_path
|
||||||
* #4490: autodoc: type annotation is broken with python 3.7.0a4+
|
* #4490: autodoc: type annotation is broken with python 3.7.0a4+
|
||||||
|
* utils package is installed
|
||||||
|
|
||||||
Testing
|
Testing
|
||||||
--------
|
--------
|
||||||
|
|||||||
@@ -214,7 +214,7 @@ setup(
|
|||||||
'Topic :: Utilities',
|
'Topic :: Utilities',
|
||||||
],
|
],
|
||||||
platforms='any',
|
platforms='any',
|
||||||
packages=find_packages(exclude=['tests']),
|
packages=find_packages(exclude=['tests', 'utils']),
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
entry_points={
|
entry_points={
|
||||||
'console_scripts': [
|
'console_scripts': [
|
||||||
|
|||||||
Reference in New Issue
Block a user