source: trunk/packaging/setup.py @ 2499

Last change on this file since 2499 was 2499, checked in by Malte Marquarding, 12 years ago

use ipython >=0.11

File size: 1.0 KB
Line 
1from setuptools import setup
2from setuptools import find_packages
3import distutils.util
4
5# Use this dummy to make distutils aware that this is a platform-specific
6# package.
7from distutils.extension import Extension
8ext = Extension('_dummy',[],[])
9
10setup(name = 'asap',
11      version = '4.1.0-trunk',
12      description = 'ATNF Spectral-Line Analysis Package',
13      author = 'Malte Marquarding',
14      author_email = 'Malte.Marquarding@csiro.au',
15      url = 'http://svn.atnf.csiro.au/trac/asap',
16      keywords = ['astronomy', 'data reduction'],
17      long_description = '''\
18This package provides reduction and analysis tools for single-dish
19spectral-line data.
20''',
21      packages = find_packages(),
22      install_requires = ["ipython>=0.11", "matplotlib>=0.99", "numpy>=1.3"],
23      package_data = {"": ["_asap.so", "data/ipy*"],
24                      },
25      scripts = ["bin/asap", "bin/asap_update_data"],
26      license = 'GPL',
27      zip_safe = 0,
28      ext_modules = [ ext ], # dummy (see above)
29      #test_suite = "nose.collector",
30)
Note: See TracBrowser for help on using the repository browser.