diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2017-01-23 10:32:22 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-23 10:32:22 -0500 |
commit | 089cdeb489a0fa94d11b7307b54210ef9aa40511 (patch) | |
tree | ee738b703f1b0737e139b5d10f62e54bd20e1028 /setup.py | |
parent | aaec654d804cb78dbb6391afff721a63f26a71cd (diff) | |
parent | 11676d39c405672270a543bdc32de395b935b869 (diff) | |
download | external_python_setuptools-089cdeb489a0fa94d11b7307b54210ef9aa40511.tar.gz external_python_setuptools-089cdeb489a0fa94d11b7307b54210ef9aa40511.tar.bz2 external_python_setuptools-089cdeb489a0fa94d11b7307b54210ef9aa40511.zip |
Merge pull request #933 from pypa/feature/581-depend-not-bundle
Bundle dependencies instead of vendoring them
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -16,7 +16,10 @@ here = os.path.dirname(__file__) def require_metadata(): "Prevent improper installs without necessary metadata. See #659" if not os.path.exists('setuptools.egg-info'): - msg = "Cannot build setuptools without metadata. Run bootstrap.py" + msg = ( + "Cannot build setuptools without metadata. " + "Install rwt and run `rwt -- bootstrap.py`." + ) raise RuntimeError(msg) @@ -159,6 +162,11 @@ setup_params = dict( Topic :: Utilities """).strip().splitlines(), python_requires='>=2.6,!=3.0.*,!=3.1.*,!=3.2.*', + install_requires=[ + 'packaging>=16.8', + 'six>=1.10.0', + 'appdirs>=1.4.0', + ], extras_require={ "ssl:sys_platform=='win32'": "wincertstore==0.2", "certs": "certifi==2016.9.26", |