-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
46 lines (42 loc) · 1.58 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
#!/usr/bin/env python
"""
setup.py file for BBHX waveform into pycbc waveform plugin package
"""
from setuptools import Extension, setup, Command
from setuptools import find_packages
VERSION = '0.3'
setup (
name = 'pycbc-bbhx-plugin',
version = VERSION,
description = 'Plugin of BBHX fast TDI waveform generator into PyCBC',
author = ['Connor Weaving', 'Shichao Wu'],
author_email = ['[email protected]', '[email protected]'],
url = 'http://www.pycbc.org/',
download_url = 'https://github.com/gwastro/BBHX-waveform-model/v%s' % VERSION,
keywords = ['pycbc', 'signal processing', 'gravitational waves', 'lisa'],
install_requires = [''],
py_modules = ['BBHX_Phenom'],
entry_points = {
"pycbc.waveform.fd_det":[
"BBHX_PhenomD=BBHX_Phenom:waveform_setup",
"BBHX_PhenomHM=BBHX_Phenom:waveform_setup",
],
"pycbc.waveform.fd_det_sequence": [
"BBHX_PhenomD=BBHX_Phenom:waveform_setup",
"BBHX_PhenomHM=BBHX_Phenom:waveform_setup",
],
"pycbc.waveform.length": [
"BBHX_PhenomD=BBHX_Phenom:bbhx_phenomd_length_in_time",
"BBHX_PhenomHM=BBHX_Phenom:bbhx_phenomhm_length_in_time",
]
},
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.9',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Scientific/Engineering :: Physics',
],
)