Skip to content
Snippets Groups Projects
Select Git revision
  • d569dc90b0e739936c1d4ac54d419f537ccbd934
  • master default protected
  • develop-GA
  • timeFstatmap
  • add-higher-spindown-components
  • develop-DK
  • adds-header-to-grid-search
  • v1.2
  • v1.1.2
  • v1.1.0
  • v1.0.1
11 results

setup.py

Blame
  • Forked from Gregory Ashton / PyFstat
    32 commits behind the upstream repository.
    setup.py 852 B
    #!/usr/bin/env python
    
    from setuptools import setup, find_packages
    from os import path
    
    here = path.abspath(path.dirname(__file__))
    # Get the long description from the README file
    with open(path.join(here, "README.md"), encoding="utf-8") as f:
        long_description = f.read()
    
    setup(
        name="PyFstat",
        version="0.2",
        author="Gregory Ashton",
        author_email="gregory.ashton@ligo.org",
        packages=find_packages(where="pyfstat"),
        include_package_data=True,
        package_data={
            "pyfstat": [
                "pyCUDAkernels/cudaTransientFstatExpWindow.cu",
                "pyCUDAkernels/cudaTransientFstatRectWindow.cu",
            ]
        },
        install_requires=[
            "matplotlib",
            "scipy",
            "ptemcee",
            "corner",
            "dill",
            "tqdm",
            "bashplotlib",
            "peakutils",
            "pathos",
        ],
    )