setup.py
766 Bytes
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
long_desc = u"""Report
Python Pixel & Cassoulet package is a set of algorithms to drive
robotic astronomical observatories."""
setup(name='report',
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=['report',],
classifiers=[
'Development Status :: Beta',
'License :: GNU General Public License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Astronomy'
]
)