Rev | Line | |
---|
[2166] | 1 | from setuptools import setup
|
---|
| 2 | from setuptools import find_packages
|
---|
[2488] | 3 | import distutils.util
|
---|
[2166] | 4 |
|
---|
[2488] | 5 | # Use this dummy to make distutils aware that this is a platform-specific
|
---|
| 6 | # package.
|
---|
| 7 | from distutils.extension import Extension
|
---|
| 8 | ext = Extension('_dummy',[],[])
|
---|
| 9 |
|
---|
[2166] | 10 | setup(name = 'asap',
|
---|
[2488] | 11 | version = '4.1.0-trunk',
|
---|
[2166] | 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 = '''\
|
---|
| 18 | This package provides reduction and analysis tools for single-dish
|
---|
| 19 | spectral-line data.
|
---|
| 20 | ''',
|
---|
| 21 | packages = find_packages(),
|
---|
[2499] | 22 | install_requires = ["ipython>=0.11", "matplotlib>=0.99", "numpy>=1.3"],
|
---|
[2166] | 23 | package_data = {"": ["_asap.so", "data/ipy*"],
|
---|
| 24 | },
|
---|
[2499] | 25 | scripts = ["bin/asap", "bin/asap_update_data"],
|
---|
[2166] | 26 | license = 'GPL',
|
---|
| 27 | zip_safe = 0,
|
---|
[2488] | 28 | ext_modules = [ ext ], # dummy (see above)
|
---|
[2166] | 29 | #test_suite = "nose.collector",
|
---|
| 30 | )
|
---|
Note:
See
TracBrowser
for help on using the repository browser.