#!/usr/bin/env python # -*- coding: utf-8 -*- from distutils.core import setup long_desc = u"""CelMe Python Pixel & Cassoulet package is a set of algorithms to drive robotic astronomical observatories.""" setup(name='celme', version='0.1', description='Python for astronomy and robotic observatories', long_description = long_desc, author='Alain Klotz', author_email='alain.klotz@free.fr', url='http://', license='GNU General Public License', packages=['celme',], classifiers=[ 'Development Status :: Beta', 'License :: GNU General Public License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Scientific/Engineering :: Astronomy' ] )