File: setup.py

package info (click to toggle)
montage 6.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 45,580 kB
  • sloc: ansic: 144,907; javascript: 4,636; python: 1,625; makefile: 1,447; sh: 230; 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/*'] }
)