Last change
on this file since 2429 was 2325, checked in by Malte Marquarding, 13 years ago |
added info and versioning for asap v4.0
|
File size:
830 bytes
|
Rev | Line | |
---|
[2166] | 1 | from setuptools import setup
|
---|
| 2 | from setuptools import find_packages
|
---|
| 3 |
|
---|
| 4 | setup(name = 'asap',
|
---|
[2325] | 5 | version = '4.0.0-trunk',
|
---|
[2166] | 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 = '''\
|
---|
| 12 | This package provides reduction and analysis tools for single-dish
|
---|
| 13 | spectral-line data.
|
---|
| 14 | ''',
|
---|
| 15 | packages = find_packages(),
|
---|
[2325] | 16 | install_requires = ["ipython<=0.10", "matplotlib>=0.99", "numpy>=1.3"],
|
---|
[2166] | 17 | package_data = {"": ["_asap.so", "data/ipy*"],
|
---|
| 18 | },
|
---|
[2271] | 19 | scripts = ["bin/asap", "bin/asap2to3", "bin/asap_update_data"],
|
---|
[2166] | 20 | license = 'GPL',
|
---|
| 21 | zip_safe = 0,
|
---|
| 22 | #test_suite = "nose.collector",
|
---|
| 23 | )
|
---|
Note:
See
TracBrowser
for help on using the repository browser.