summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorJonathan Wheeler <jonathan.m.wheeler@gmail.com>2018-07-13 08:13:19 -0700
committerJonathan Wheeler <jonathan.m.wheeler@gmail.com>2018-07-13 08:13:19 -0700
commit735ebecbdba6d4104ee8a22816eca4285f5cd84a (patch)
tree9c6519e9792f3cd3fed5d1c6bb6a22d9a822daf2 /setup.py
parentcac6e839dc7afceab501459ca7118bb3d5a8ce1e (diff)
downloadpint-735ebecbdba6d4104ee8a22816eca4285f5cd84a.tar.gz
Added backwards compatibility for py27
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 354a79d..1bcae3c 100644
--- a/setup.py
+++ b/setup.py
@@ -60,4 +60,10 @@ setup(
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
- ])
+ ],
+ extras_require={
+ ':python_version == "2.7"': [
+ 'funcsigs',
+ ],
+ },
+ )