ezag / pyeuclid

2D and 3D maths module for Python
97 stars 41 forks source link

Fix setup.py to install euclid.py #12

Closed franzlst closed 7 years ago

franzlst commented 7 years ago

Installing this package with setuptools leaves out euclid.py. Thus after the installation, you cannot do import euclid. This is due to an erroneous setup.py which is fixed in this PR. The solution came from: http://www.agapow.net/programming/python/setuptools-and-the-single-file/

codecov-io commented 7 years ago

Current coverage is 54.67% (diff: 100%)

Merging #12 into master will not change coverage

@@             master        #12   diff @@
==========================================
  Files             1          1          
  Lines          1635       1635          
  Methods           0          0          
  Messages          0          0          
  Branches          0          0          
==========================================
  Hits            894        894          
  Misses          741        741          
  Partials          0          0          

Powered by Codecov. Last update 60d7bcb...0fbd588

ezag commented 7 years ago

@franzlst thank you!