Advertisement
AdityaSriram

setup.py

Jan 27th, 2013
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.57 KB | None | 0 0
  1. #-------------------------------------------------------------------------------
  2. # Name:        setup
  3. # Purpose:     Setup file for Stock Watch application
  4. #
  5. # Author:      Aditya Sriram
  6. #
  7. # Created:     26/01/2013
  8. # Copyright:   (c) Cubes and Codes 2013
  9. # Licence:     <no license>
  10. #-------------------------------------------------------------------------------
  11. #!/usr/bin/env python
  12.  
  13. from distutils.core import setup
  14.  
  15. setup(
  16.     version = "1.0",
  17.     description = "Helps monitoring stocks/equities in  BSE.",
  18.     name = "Stock Watch",
  19.     console=['stock.py'])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement