- Fix version mismatch in __init__.py
- Add numpy as a required install in setup.py since it is used directly in the library
- Make the pip install command more noticeable
This commit is contained in:
Jonathan Herbert
2018-07-28 22:17:59 -04:00
committed by oroulet
parent d99e3219ce
commit fa466b3cc9
3 changed files with 6 additions and 3 deletions

View File

@@ -9,7 +9,7 @@ setup(
url='https://github.com/oroulet/python-urx',
packages=["urx"],
provides=["urx"],
install_requires=["math3d"],
install_requires=["numpy", "math3d"],
license="GNU Lesser General Public License v3",
classifiers=[
"Programming Language :: Python",