-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (36 loc) · 1.06 KB
/
Copy pathsetup.py
File metadata and controls
38 lines (36 loc) · 1.06 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
from setuptools import setup
setup(
name='PTAfast',
version='0.0.2',
description='Fast code for calculation of SGWB spatial correlations in PTA',
url='https://github.com/reggiebernardo/PTAfast',
author='Reginald Christian Bernardo',
author_email='reginaldchristianbernardo@gmail.com',
license='MIT',
packages=['PTAfast'],
install_requires=[
'numpy',
'scipy',
'matplotlib',
'healpy',
'astropy',
'tqdm',
'multiprocess',
'py3nj'
],
python_requires='>=3.10',
)
# setup(
# name='PTAfast',
# version='0.0.1',
# description='Fast code for calculation of SGWB spatial correlations in PTA',
# url='https://github.com/reggiebernardo/PTAfast',
# author='Reginald Christian Bernardo',
# author_email='reginaldchristianbernardo@gmail.com',
# license='MIT license',
# packages=['PTAfast'],
# install_requires=['numpy',
# 'scipy',
# 'py3nj',
# ],
# )