diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-09-27 16:13:48 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-09-27 16:13:48 -0400 |
commit | b5c2250e8f6f26466e033616d76345e2152ba283 (patch) | |
tree | 03f3c27bc457e5d0910c00cce44f31fb6a8c099b /setup.py | |
parent | 3e76841d8ad2d33b5224cd64c06faafec3832227 (diff) | |
download | python-setuptools-bitbucket-b5c2250e8f6f26466e033616d76345e2152ba283.tar.gz |
Prefer packaging library if available.
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -198,6 +198,9 @@ setup_params = dict( Topic :: System :: Systems Administration Topic :: Utilities """).strip().splitlines(), + install_requires=[ + "packaging>=14.2,<15.0.dev0", + ], extras_require={ "ssl:sys_platform=='win32'": "wincertstore==0.2", "certs": "certifi==1.0.1", |