from setuptools import setup setup( name='hellowebpy', version='1.0.1', description="A minimal 'hello world' python web server.", author="Scott Worley", author_email="scottworley@scottworley.com", url="https://git.scottworley.com/hellowebpy", py_modules=['hellowebpy'], license="GPL-3.0", entry_points={'console_scripts': ['hellowebpy = hellowebpy:main']}, )