-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
35 lines (31 loc) · 1.44 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
#!/usr/bin/env python
from setuptools import setup
from lofarantpos import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
if __name__ == "__main__":
setup(name='lofarantpos',
version = __version__,
description = 'Access, query, and manipulate LOFAR antenna positions',
long_description = long_description,
long_description_content_type="text/markdown",
author = 'M.A. Brentjens',
author_email = '[email protected]',
packages = ['lofarantpos'],
url = "https://github.com/lofar-astron/lofar-antenna-positions",
requires = ['numpy', 'pathlib'],
scripts = [],
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
data_files = [('share/lofarantpos',
['share/lofarantpos/etrs-antenna-positions.csv',
'share/lofarantpos/etrs-phase-centres.csv',
'share/lofarantpos/hba-rotations.csv',
'share/lofarantpos/normal_vectors.dat',
'share/lofarantpos/rotation_matrices.dat',
'share/lofarantpos/stationinfo.csv'])]
)