diff options
author | Sviatoslav Sydorenko <wk@sydorenko.org.ua> | 2018-04-10 13:43:42 +0200 |
---|---|---|
committer | Sviatoslav Sydorenko <wk.cvs.github@sydorenko.org.ua> | 2018-04-12 23:53:52 +0200 |
commit | 75092c9f29c89418586a44d6b209fb30e3f16d2c (patch) | |
tree | b1c9ef042390e0c21dd5c73ace71442f82040c82 /setup.py | |
parent | a173cf51e8f936be528e352bfcf681283006204f (diff) | |
download | ansible-75092c9f29c89418586a44d6b209fb30e3f16d2c.tar.gz |
Update python requirements in distribution meta
This has been discussed during #38413 review, but got missed.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -189,6 +189,7 @@ setup( # Ansible will also make use of a system copy of python-six and # python-selectors2 if installed but use a Bundled copy if it's not. install_requires=install_requirements, + python_requires='>=2.6,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*', package_dir={'': 'lib'}, packages=find_packages('lib'), package_data={ @@ -215,6 +216,9 @@ setup( 'Operating System :: POSIX', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Topic :: System :: Installation/Setup', 'Topic :: System :: Systems Administration', 'Topic :: Utilities', |