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:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2017-05-25 18:12:45 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2017-05-25 18:12:45 +0300
commit13a383e06169bfdcc6023013242a1bb270853091 (patch)
tree47b67dd1770e572a80433f5bd8822adbd6a1f6de /setup.py
parentc1191e4f54b0e10257d58868388133322238f309 (diff)
Refactor setup.py
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index e1d71163b..a51c434d8 100644
--- a/setup.py
+++ b/setup.py
@@ -60,11 +60,13 @@ extras_require = {
':sys_platform=="win32"': [
'colorama>=0.3.5',
],
+ ':python_version<"3.5"': [
+ 'typing'
+ ],
'websupport': [
'sqlalchemy>=0.9',
'whoosh>=2.0',
],
- ':python_version<"3.5"': ['typing'],
'test': [
'pytest',
'mock', # it would be better for 'test:python_version in 2.7'