-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
21 lines (19 loc) · 963 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name='gwfast',
version='1.1.2',
author='Francesco Iacovelli, Michele Mancarella',
author_email='[email protected], [email protected]',
description='A fisher matrix python package for GW studies',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/CosmoStatGW/gwfast',
license='GNU GPLv3',
python_requires='>=3.9',
packages=['gwfast', 'run'],#setuptools.find_packages(),
include_package_data=True,
package_data={'':['../WFfiles/*.txt', '../WFfiles/*.h5', '../psds/*', '../psds/ce_curves/*', '../psds/LVC_O1O2O3/*', '../psds/observing_scenarios_paper/*', '../psds/unofficial_curves_all_dets/*']},
install_requires=['numpy', 'scipy', 'astropy', 'h5py', 'mpmath', 'matplotlib', 'numdifftools', 'schwimmbad'],
)