-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (34 loc) · 1.1 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "gptools-stan"
version = "1.0.0"
description = "Gaussian processes on graphs and lattices in Stan."
license.file = "LICENSE"
readme = "README.md"
authors = [
{name = "Till Hoffmann"},
{name = "Jukka-Pekka Onnela"}
]
keywords = ["Gaussian process", "Stan", "Bayesian inference", "graph", "Fourier"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering",
]
requires-python = ">=3.8"
dependencies = [
"cmdstanpy>=1.0.7", # Required because of a bug in how complex numbers are handled.
"numpy",
]
[project.urls]
Documentation = "https://gptools-stan.readthedocs.io"
Repository = "https://github.com/onnela-lab/gptools.git"
Issues = "https://github.com/onnela-lab/gptools/issues"
Reference = "https://doi.org/10.18637/jss.v112.i02"
[tool.setuptools]
packages = {find = {namespaces = true}}
include-package-data = true