forked from ratt-ru/eidos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (39 loc) · 1.17 KB
/
setup.py
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
37
38
39
40
41
42
43
44
#!/usr/bin/env python
import os
try:
from setuptools import setup
except:
from distutils.core import setup
requirements = [
'numpy',
'scipy',
'astropy',
'future',
]
PACKAGE_NAME = 'eidos'
__version__ = '1.1.0'
setup(name=PACKAGE_NAME,
version=__version__,
description='Modelling primary beams of radio telescope antennae',
author='Khan M. B Asad',
author_email='[email protected]',
url='https://github.com/ratt-ru/eidos',
packages=[PACKAGE_NAME,],
install_requires=requirements,
include_package_data=True,
package_data={
"eidos": [
"data/meerkat_beam_coeffs_ah_zp_dct.npy",
"data/meerkat_beam_coeffs_em_zp_dct.npy"
]
},
scripts=['bin/' + j for j in os.listdir('bin')],
license='GNU GPL v3',
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Astronomy",
])