from setuptools import setup setup( name='apps', py_modules=['apps'], entry_points={ 'console_scripts': [ 'apps = apps:main', ], } )