Use importlib.metadata directly in python3.8+

This commit is contained in:
Anthony Sottile 2019-10-17 10:48:35 -07:00
parent b3582dfd31
commit f8f81db36d
3 changed files with 12 additions and 7 deletions

View file

@ -14,10 +14,10 @@ classifiers =
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
@ -27,15 +27,15 @@ install_requires =
aspy.yaml
cfgv>=2.0.0
identify>=1.0.0
importlib-metadata
nodeenv>=0.11.1
pyyaml
six
toml
virtualenv>=15.2
futures; python_version<"3.2"
importlib-resources; python_version<"3.7"
python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
futures;python_version<"3.2"
importlib-metadata;python_version<"3.8"
importlib-resources;python_version<"3.7"
python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
[options.entry_points]
console_scripts =