-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (30 loc) · 1.15 KB
/
setup.py
File metadata and controls
36 lines (30 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env python
import sys
if 'develop' in sys.argv:
# use setuptools for develop, but nothing else
from setuptools import setup
else:
from distutils.core import setup
with open('README.rst') as file:
long_description = file.read()
with open('CHANGES') as file:
long_description += file.read()
__version__='0.1.4'
setup(name='agpy',
version=__version__,
description='agpy, Adam Ginsburg\'s Python Code (in 0.1 for perpetuity - it won\'t bump up until I release something)',
long_description=long_description,
author='Adam Ginsburg',
author_email='adam.g.ginsburg@gmail.com',
data_files=[('h2fit',['h2fit_support/atran.txt',
'h2fit_support/atran2000.fits',
'h2fit_support/atran_arcturus.txt',
'h2fit_support/atran_raw_arcturus.txt',
'h2fit_support/atran_solar.txt',
'h2fit_support/atran_tran.txt',
'h2fit_support/dalgarno1984_table5.txt',
'h2fit_support/h2pars.txt',
'h2fit_support/linelist.txt'])],
url='http://code.google.com/p/agpy/',
packages=['agpy','agpy/mpfit','AG_fft_tools','AG_image_tools','agpy/contributed','radex'],
)