[5c09f6]: / setup.py

Download this file

13 lines (11 with data), 419 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
from setuptools import setup, find_packages
setup(
name="gpsa",
version="0.6",
description="Gaussian Process Spatial Alignment (GPSA)",
url="https://github.com/andrewcharlesjones/spatial-alignment",
download_url="https://github.com/andrewcharlesjones/spatial-alignment/archive/refs/tags/v0.6.tar.gz",
author="Andy Jones",
author_email="ajones788@gmail.com",
packages=find_packages(),
)