bastikr / boolean.py

Implements boolean algebra in one module.
BSD 2-Clause "Simplified" License
76 stars 34 forks source link

Rename package to make it play well with dev tools #97

Closed fkromer closed 3 years ago

fkromer commented 4 years ago

The name of this package (boolean.py) is unconventional. This leads to problems when using common Python dev tools. E.g. running liccheck with $ liccheck -s license_check.ini -r requirements.txt leads to pkg_resources.DistributionNotFound: The 'boolean-py==3.7' distribution was not found and is required by the application

pombredanne commented 3 years ago

@fkromer I reckon that's a little bit uncommon, but this is still valid for a package name to have a dot and a dot py extension Which Python/pip/setuptools version do you run and on which OS?

pombredanne commented 3 years ago

Actually your issue stems from not using the package name: use boolean.py==3.7 and not boolean-py==3.7