install_requires should include `phonenumbers`
See original GitHub issueerror code
import phonenumbers
ModuleNotFoundError: No module named 'phonenumbers'
Issue Analytics
- State:
- Created 6 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Any reason setup.py install_requires should include setuptools?
My code installs and executes fine without it. I may be mistaken, but I think the purpose of the install_requires list is to...
Read more >A Practical Guide to Using Setup.py - GoDataDriven
The key to setting up your project is the setup.py file. In this blog I'll go into the details of this file. Where...
Read more >setup.py vs setup.cfg in Python - Towards Data Science
Discussing about setuptools and the difference between setup.py, setup.cfg and pyproject.toml files in Python to manage dependencies and distribute ...
Read more >How to Package Python dependencies with PIP setuptools
install_requires is a section within the setup.py file in which you need to input a list of the minimum dependencies needed for a...
Read more >install_requires vs requirements files
install_requires is a setuptools · setup.py keyword that should be used to specify what a project minimally needs to run correctly. When the...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
We’ve dropped the conditional logic in setup.py to use phonenumberslight on the master branch. It will be part of the next release.
It should also be noted that the current wheel for phonenumbers lite is still over 2MB (because it contains all the geodata): https://pypi.python.org/pypi/phonenumberslite/8.8.1
pip
prefers wheel over source distributions, so I doubt anyone is actually installing the stripped down package anyway!edit: reported upstream: https://github.com/daviddrysdale/python-phonenumbers/issues/105