-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (25 loc) · 876 Bytes
/
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
from setuptools import setup, find_packages
import codecs
import os
VERSION = '0.0.2'
DESCRIPTION = 'MeerKAT Radio Telescope simulation data generator'
LONG_DESCRIPTION = 'MeerKAT Radio Telescope simulation data generator'
# Setting up
setup(
name="MeerKATgen",
version=VERSION,
author="Peter Xiangyuan Ma (PetchMa)",
author_email="<[email protected]>",
description=DESCRIPTION,
packages=find_packages(),
install_requires=['numpy', 'scipy', 'matplotlib', 'numba', 'jax', 'setigen'],
keywords=['python', 'simulation', 'radio telescope'],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
)