I keep seeing this kind of code a lot in python setup.py files.
from distutils.core import setup
setup(
        name            = 'SOMETHINGHERE',
        version         = 'SOMETHINGHERE',
        py_modules      = ['SOMETHINGHERE'],
        author          = 'SOMETHINGHERE',
        author_email    = 'SOMETHINGHERE',
        url             = 'http://www.example.com',
        description     = 'SOMETHINGHERE',
        )
What exactly does it mean? How does it work? I'm trying to understand the code. ps: sorry about my poor english xP
 
    