Blame view

src/core/celme/setup.py 763 Bytes
4f8cc5f0   aklotz   Package CelMe Cel...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/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'
        ]
    )