''' This file is used in the process of creating an RPM. ''' ####################################################################### # To create an RPM run the following command: python setup.py bdist_rpm ######################################################################## from distutils.core import setup setup ( version = '0.0.0', description = 'Code to control cameras during a solar eclipse', long_description = "For later", author = "Dale J Chatham and Allen Tyler", author_email = "dale.chatham@gmail.com", maintainer = "Dale J Chatham", license = "GPL", url = "", download_url = "", scripts = [ ], data_files = [ ] )