-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
41 lines (38 loc) · 1.64 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
"""
setup.py file to hook up pyseobnr with pycbc waveform plugin
"""
from setuptools import Extension, setup, Command, find_packages
VERSION = '0.0'
setup (
name = 'pycbc-seobnr',
version = VERSION,
description = 'A waveform plugin for PyCBC for pySEOBNR',
author = 'Yifan Wang',
author_email = '[email protected]',
url = 'https://github.com/yi-fan-wang/pycbc-plugin-seobnr',
#download_url = 'https://github.com/gwastro/revchirp/tarball/v%s' % VERSION,
keywords = ['effective one body', 'gravitational waves', 'pycbc'],
packages = find_packages(),
py_modules = ['genwave'],
#package_dir = {'':'src'},
#package_dir={'PyTGR': 'src'},
entry_points = {"pycbc.waveform.td":["SEOBNRv5E_tdtaper = genwave:gen_seobnrv5e_td"],
"pycbc.waveform.fd":["SEOBNRv5E = genwave:gen_seobnrv5e_fd",
"SEOBNRv5EHM = genwave:gen_seobnrv5ehm_fd"],
"pycbc.waveform.length":["SEOBNRv5PHM = genwave:seobnrv5phm_length_in_time"]
},
python_requires='>=3.8',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Scientific/Engineering :: Physics',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
],
)