Commit 88d51713 authored by Kirill Smelkov's avatar Kirill Smelkov

python: Simple setup.py for helloweb.py

So that it can be installed as egg/scripts via std setuptools machinery.
parent 27921aea
# minimal egg specification for helloweb.py
from setuptools import setup
setup(
name = 'helloweb',
entry_points = { 'console_scripts': ['helloweb = helloweb:main'] },
# NOTE we can require other eggs via
# install_requires = [ ... ]
)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment