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