-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
51 lines (46 loc) · 1.58 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[tool.poetry]
authors = ["Jan Gosmann <[email protected]>"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
description = "GopPy (Gaussian Online Processes for Python) is a pure Python module providing a Gaussian process implementation which allows 'to efficiently add new data online."
documentation = "https://goppy.readthedocs.io/en/latest/"
homepage = "https://github.com/jgosmann/goppy"
keywords = ["Gaussian processes", "machine learning", "online learning"]
license = "MIT"
name = "goppy"
readme = "README.rst"
repository = "https://github.com/jgosmann/goppy"
version = "1.1.2" # also update in doc/conf.py
[tool.poetry.dependencies]
numpy = ">=1.26.0,<3"
python = ">=3.9"
[tool.poetry.group.dev.dependencies]
PyHamcrest = "^2.0.4"
matplotlib = "^3.7.2"
numpydoc = "^1.5.0"
pytest = "^8.3.3"
pytest-cov = "^5.0.0"
sphinx = "^7.1.2"
sphinx-rtd-theme = "^1.2.2"
ruff = "^0.7.1"
[tool.ruff]
extend-exclude = ["doc/pyplots"]
[tool.ruff.lint]
extend-select = ["I"]
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]