File: setup.py

package info (click to toggle)
montage 6.0%2Bdfsg-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 23,120 kB
  • sloc: ansic: 205,662; python: 1,621; makefile: 1,547; javascript: 1,338; sh: 157; xml: 48
file content (18 lines) | stat: -rwxr-xr-x 531 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env python

from setuptools import setup

setup(
    name = 'astroMontage',
    version = '0.1',
    author = 'John Good',
    author_email = 'jcg@ipac.caltech.edu',
    description = 'Wrapper around Montage toolkit for displaying astronomical image/overlay data.',
    license = 'BSD',
    keywords = 'astronomy astronomical image display',
    url = 'https://github.com/Caltech-IPAC/Montage',
    
    packages = ['astroMontage'],
    install_requires = ['tornado'],
    package_data = { 'astroMontage': ['web/*'] }
)