Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Finucane <stephen@that.guru>2017-10-21 16:19:28 +0300
committerStephen Finucane <stephen@that.guru>2017-12-19 15:06:16 +0300
commitf74b6756ac80e7a07f2b7c8a7f304e245404c116 (patch)
tree18a31506cce4241c17dc6ccd6a22f52a562fda39 /setup.cfg
parentf98bc4becc2187c0ef1ce29367c8cc732387423e (diff)
setup.cfg: Restructure file
Place configuration of the package itself first in the file, followed by configuration of other tools. Signed-off-by: Stephen Finucane <stephen@that.guru>
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg18
1 files changed, 9 insertions, 9 deletions
diff --git a/setup.cfg b/setup.cfg
index cb6887fc3..00e7833d3 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,11 +1,20 @@
+[metadata]
+license_file = LICENSE
+
[egg_info]
tag_build = .dev
tag_date = true
+[bdist_wheel]
+universal = 1
+
[aliases]
release = egg_info -Db ''
upload = upload --sign --identity=36580288
+[build_sphinx]
+warning-is-error = 1
+
[extract_messages]
mapping_file = babel.cfg
output_file = sphinx/locale/sphinx.pot
@@ -20,12 +29,6 @@ output_dir = sphinx/locale/
domain = sphinx
directory = sphinx/locale/
-[bdist_wheel]
-universal = 1
-
-[metadata]
-license_file = LICENSE
-
[flake8]
max-line-length = 95
ignore = E116,E241,E251,E741
@@ -40,6 +43,3 @@ follow_imports = skip
incremental = True
check_untyped_defs = True
warn_unused_ignores = True
-
-[build_sphinx]
-warning-is-error = 1