Closed yan12125 closed 3 years ago
Oh, I didn't notice that pkg_resources
is no longer needed for entry scripts.
importlib.metadata
was added in Python 3.8 but we support 3.7. What will happen if we don't depend setuptools
and try to install in 3.7?
Ah, good point. How about 'setuptools; python_version<"3.8"'
?
We can do that? That's great!
By the way, maybe
packaging
can also be moved frominstall_requires
toextras_require
as that library is only needed by the pypi source now.