Last change
on this file since 2543 was 2525, checked in by Malte Marquarding, 12 years ago |
make extension into module to hide from setup.py
|
File size:
759 bytes
|
Rev | Line | |
---|
[2525] | 1 | from setup_ext import setup
|
---|
[2490] | 2 |
|
---|
| 3 | PKGNAME = "asap"
|
---|
| 4 |
|
---|
| 5 | setup(name = PKGNAME,
|
---|
| 6 | version = '4.1.x-trunk',
|
---|
| 7 | description = 'ATNF Spectral-line Analysis Package',
|
---|
| 8 | author = 'Malte Marquarding',
|
---|
| 9 | author_email = 'Malte.Marquarding@csiro.au',
|
---|
| 10 | url = 'http://svn.atnf.csiro.au/trac/asap',
|
---|
| 11 | keywords = ['radio astronomy', 'spectral-line', 'ATNF'],
|
---|
| 12 | long_description = '''A package to process and analyse spectral-line
|
---|
| 13 | data from (ATNF) single-dish telescopes.
|
---|
| 14 | ''',
|
---|
[2504] | 15 | package_dir = { PKGNAME: 'python' },
|
---|
| 16 | packages = [ PKGNAME ],
|
---|
[2490] | 17 | scripts = ["bin/asap", "bin/asap_update_data",],
|
---|
| 18 | license = 'GPL',
|
---|
[2504] | 19 | install_requires = ["ipython>=0.11", "matplotlib>=0.99", "numpy>=1.3"],
|
---|
[2517] | 20 | # setup_requires = [ "scons>=1.0" ],
|
---|
[2504] | 21 | )
|
---|
Note:
See
TracBrowser
for help on using the repository browser.