forked from hsuyeep/lofarstationdata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 1.16 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
from setuptools import setup, find_packages
description = "lofarstation: Work with xst and acc data station data."
long_description = description
setup(
name='lofarstationdata',
author='Stephen Bourke',
version=0.8,
url='http://github.com/sabourke/lofarstation/',
description=description,
long_description=long_description,
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Utilities',
],
install_requires=['numpy', 'python-casacore'],
packages=find_packages(exclude=['tests','examples']),
package_data={'lofarstation': ['AntennaFields/*']},
entry_points={
'console_scripts': [
'lofar-station-ms=lofarstation.converter:main',
],
},
)