lather 0.0.0

A Rust crate and Python extension for modeling starspot effects on radial velocity and photometric observations, inspired by complaints about the SOAP project of similar goals.
1
2
3
4
5
6
7
8
9
10
11
12
from setuptools import setup
from setuptools_rust import Binding, RustExtension

setup(name='lather',
    version='0.1.0',
    rust_extensions=[
        RustExtension('lather.lather', 'Cargo.toml', binding=Binding.RustCPython)
    ],
    packages=['lather'],
    zip_safe=False,
    install_requires=['numpy']
)