Python Forum

Full Version: Site packages, Python 3.8
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
from setuptools import setup

setup(
    name = 'vsearch'
    version = '1.0'
    description = 'The Head First Python Search Tools',
    author = 'HF Python 2e',
    author_email = '[email protected]',
    url = 'headfirstlabs.com',
    py_modules = ['vsearch'],
)
The above gets stuck at "version '1.0'" It is from the book 'Head First Python', page 179, regarding site packages.
you have 2 missing commas
(Jan-18-2020, 09:19 PM)buran Wrote: [ -> ]you have 2 missing commas
Ahh, something simple. Thanks.