django-currencies allows you to define different currencies, and includes template tags/filters to allow easy conversion between them.
BSD 3-Clause "New" or "Revised" License
94
stars
81
forks
source link
Remove 'requires' option from setup.py #47
Closed
kskumar closed 7 years ago
When using
pip
to install the latestmaster
from github, I encounter the following error:The exact issue appears to be the use of the
requires
option withinsetup()
. Specifically,setuptools
interprets the dash character within the package namedjango-jsonfield
as an arithmetic operator (see https://github.com/v3n0m-Scanner/V3n0M-Scanner/issues/47#issuecomment-241246116).Since
distutils
is no longer in use by this package, wouldn't it be safe to remove therequires
option fromsetup()
?