Skip to content

Instantly share code, notes, and snippets.

@wickman
Created May 14, 2014 20:36
Show Gist options
  • Save wickman/d654ebf33a60945a62aa to your computer and use it in GitHub Desktop.
Save wickman/d654ebf33a60945a62aa to your computer and use it in GitHub Desktop.
example autogenerated setup.py
# DO NOT EDIT THIS FILE -- AUTOGENERATED BY PANTS
# Target: PythonLibrary(src/main/python/apache/thermos/observer/BUILD:observer)
from setuptools import setup
setup(**
{ 'description': 'The Thermos observer web interface.',
'entry_points': { 'console_scripts': [ 'thermos_observer = apache.thermos.observer.bin.thermos_observer:proxy_main']},
'install_requires': [ 'apache.thermos.monitoring==0.5.0-DEV1399063100',
'mako==0.4.0',
'twitter.common.http==0.3.0',
'cherrypy==3.2.2',
'apache.thermos.config==0.5.0-DEV1399063100',
'bottle==0.11.6',
'twitter.common.app==0.3.0'],
'name': 'apache.thermos.observer',
'namespace_packages': ['apache', 'apache.thermos'],
'package_data': { 'apache.thermos.observer.http': [ 'assets/favicon.ico',
'assets/jquery.pailer.js',
'templates/rawtask.tpl',
'assets/bootstrap.css',
'templates/process.tpl',
'templates/main.tpl',
'templates/home.tpl',
'templates/logbrowse.tpl',
'templates/filebrowse.tpl',
'templates/filelist.tpl',
'assets/jquery.js',
'templates/index.tpl',
'assets/observer.js',
'templates/task.tpl']},
'package_dir': { '': 'src'},
'packages': [ 'apache',
'apache.thermos',
'apache.thermos.observer',
'apache.thermos.observer.bin',
'apache.thermos.observer.http'],
'version': '0.5.0-DEV1399063100'}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment