build file now looks like this: ```python_library(...
# pex
c
build file now looks like this:
Copy code
python_library(
  name='theapp_lib',
  dependencies=[
    '3rdparty/python:Flask',
    '3rdparty/python:gevent',
  ]
)

python_binary(
  name='theapp',
  entrypoint='theapp:main'
  dependencies=[':ignition_lib'],
  resources=globs('static/*', 'templates/*'),
  source='theapp.py',
  zip_safe=False
)