mbaudin47 / othdrplot

High density plot
GNU Lesser General Public License v3.0
2 stars 3 forks source link

The setup.py has an UTF8 issue #34

Closed mbaudin47 closed 4 years ago

mbaudin47 commented 4 years ago
>python setup.py install
  File "setup.py", line 1
SyntaxError: encoding problem: utf8

The problem is:

# coding: utf8

must be replaced with:

# coding: utf-8
mbaudin47 commented 4 years ago

The two lines:

setup_requires = ['pytest-runner']
tests_require = ['pytest', 'coverage']

are wrong. The module does not depend on these packages.