]> git.scottworley.com Git - hellowebpy/blame_incremental - setup.py
Release 1.0.1
[hellowebpy] / setup.py
... / ...
CommitLineData
1from setuptools import setup
2
3setup(
4 name='hellowebpy',
5 version='1.0.1',
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)