source: trunk/packaging/setup.py@ 2242

Last change on this file since 2242 was 2166, checked in by Malte Marquarding, 13 years ago

Added egg and debian packaging framework

File size: 759 bytes
Line 
1from setuptools import setup
2from setuptools import find_packages
3
4setup(name = 'asap',
5 version = '3.1.0-trunk',
6 description = 'ATNF Spectral-Line Analysis Package',
7 author = 'Malte Marquarding',
8 author_email = 'Malte.Marquarding@csiro.au',
9 url = 'http://svn.atnf.csiro.au/trac/asap',
10 keywords = ['astronomy', 'data reduction'],
11 long_description = '''\
12This package provides reduction and analysis tools for single-dish
13spectral-line data.
14''',
15 packages = find_packages(),
16 install_requires = ["ipython>=0.8", "matplotlib>=0.99", "numpy>=1.3"],
17 package_data = {"": ["_asap.so", "data/ipy*"],
18 },
19 license = 'GPL',
20 zip_safe = 0,
21 #test_suite = "nose.collector",
22)
Note: See TracBrowser for help on using the repository browser.