]> git.scottworley.com Git - hellowebpy/blame - setup.py
Release 1.0.1
[hellowebpy] / setup.py
CommitLineData
f95935ab
SW
1from setuptools import setup
2
3setup(
4 name='hellowebpy',
86177fdf 5 version='1.0.1',
f95935ab
SW
6 description="A minimal 'hello world' python web server.",
7 author="Scott Worley",
8 author_email="scottworley@scottworley.com",
9 url="https://git.scottworley.com/hellowebpy",
10 py_modules=['hellowebpy'],
11 license="GPL-3.0",
12 entry_points={'console_scripts': ['hellowebpy = hellowebpy:main']},
13)