Oct-25-2019, 05:29 PM
Hi, im trying to make a module:
$python3 setup.py sdist
I get a syntax error though I cant imagine what it is
from distutils.core import setup setup( name = "nester" version = '1.0.0' py_modules = ['nester'] author = 'j' author_email = '[email protected]' url = 'nothing.com' description = 'a simple printer of nested lists' )and when I run:
$python3 setup.py sdist
I get a syntax error though I cant imagine what it is
Error:File "setup.py", line 5
version = '1.0.0'
^
SyntaxError: invalid syntax
I've tried messing around with the syntax of the setup.py and am continually coming up short, can somebody please help me or at least point me in the right direction? 