forked from UCBerkeleySETI/blimpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
72 lines (66 loc) · 2.13 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
"""
setup.py -- setup script for use of packages.
"""
from setuptools import setup, find_packages
__version__ = '1.4.1'
with open("README.md", "r") as fh:
long_description = fh.read()
# create entry points
# see http://astropy.readthedocs.org/en/latest/development/scripts.html
entry_points = {
'console_scripts' : [
'filutil = blimpy.filterbank:cmd_tool',
'watutil = blimpy.waterfall:cmd_tool',
'rawutil = blimpy.guppi:cmd_tool',
'fil2h5 = blimpy.fil2h5:cmd_tool',
'h52fil = blimpy.h52fil:cmd_tool',
'matchfils = blimpy.match_fils:cmd_tool',
'bldice = blimpy.dice:cmd_tool'
]
}
install_requires = [
'matplotlib<3.0;python_version=="2.7"',
'matplotlib;python_version>"2.7"',
'astropy<3.0;python_version=="2.7"',
'astropy;python_version>"2.7"',
'numpy',
'cython',
'h5py',
'scipy',
'six'
]
extras_require = {
'full': [
'bitshuffle',
'pyslalib',
]
}
setup(name='blimpy',
version=__version__,
description='Python utilities for Breakthrough Listen SETI observations',
long_description=long_description,
long_description_content_type='text/markdown',
platform=['*nix'],
license='BSD',
install_requires=install_requires,
extras_require=extras_require,
url='https://github.com/ucberkeleyseti/blimpy',
author='Danny Price, Emilio Enriquez, Yuhong Chen, Mark Siebert, and BL contributors',
author_email='[email protected]',
entry_points=entry_points,
packages=find_packages(),
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Topic :: Scientific/Engineering :: Astronomy',
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
test_suite="blimpytests",
)