-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·37 lines (35 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
35
36
37
#!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name="katsdpdata",
description="Data search and retrieval library for the MeerKAT project",
author="Thomas Bennett, Chris Schollar",
author_email="thomas@ska.ac.za, cschollar@ska.ac.za",
packages=find_packages(),
install_requires=[
"boto", "katdal", "katpoint", "katsdpservices",
"katsdptelstate", "numpy", "pysolr"],
url='http://ska.ac.za/',
scripts=[
"scripts/tel_prod_met_extractor.py",
"scripts/download_cbid_prods_maximum_plaid.py",
"scripts/vis_trawler.py"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Astronomy"],
platforms=["OS Independent"],
keywords="meerkat ska",
zip_safe=False,
use_katversion=True,
test_suite="tests",
extras_require={
'test': [
"pytest",
]
}
)