forked from ratt-ru/shadeMS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (39 loc) · 1.2 KB
/
setup.py
File metadata and controls
44 lines (39 loc) · 1.2 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
37
38
39
40
41
42
43
44
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
requirements = [
"dask-ms[xarray]",
"dask[complete]",
"datashader>=0.12.0",
"holoviews",
"matplotlib>2.2.3; python_version >= '3.5'",
"cmasher",
"future-fstrings",
"requests",
"MSUtils"
]
extras_require = {'testing': ['pytest', 'pytest-flake8']}
PACKAGE_NAME = 'shadems'
__version__ = '0.5.0'
setup(name = PACKAGE_NAME,
version = __version__,
description = "Rapid Measurement Set plotting with dask-ms and datashader",
author = "Ian Heywood & RATT",
author_email = "ian.heywood@physics.ox.ac.uk",
url = "https://github.com/ratt-ru/shadeMS",
packages=find_packages(),
install_requires = requirements,
extras_require=extras_require,
include_package_data = True,
scripts=["bin/" + i for i in os.listdir("bin")],
license=["GNU GPL v2"],
python_requires=">=3.6",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Astronomy"
]
)