Line | |
---|
1 | from setuptools import setup
|
---|
2 | from setuptools import find_packages
|
---|
3 | import distutils.util
|
---|
4 |
|
---|
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 |
|
---|
10 | setup(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 = '''\
|
---|
18 | This package provides reduction and analysis tools for single-dish
|
---|
19 | spectral-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.