diff options
| author | Jonathan Wheeler <jonathan.m.wheeler@gmail.com> | 2018-07-13 08:13:19 -0700 |
|---|---|---|
| committer | Jonathan Wheeler <jonathan.m.wheeler@gmail.com> | 2018-07-13 08:13:19 -0700 |
| commit | 735ebecbdba6d4104ee8a22816eca4285f5cd84a (patch) | |
| tree | 9c6519e9792f3cd3fed5d1c6bb6a22d9a822daf2 /setup.py | |
| parent | cac6e839dc7afceab501459ca7118bb3d5a8ce1e (diff) | |
| download | pint-735ebecbdba6d4104ee8a22816eca4285f5cd84a.tar.gz | |
Added backwards compatibility for py27
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -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', + ], + }, + ) |
