-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
88 lines (79 loc) · 2.22 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "gpcam"
dependencies = [
"wheel",
"scipy ~= 1.13.0",
"numpy ~= 2.1.1",
"dask ~= 2024.1.0",
"distributed ~= 2024.1.0",
"fvgp ~= 4.5.4",
"loguru",
]
requires-python = ">=3.10"
authors = [
{ name = "Marcus Michael Noack", email = "[email protected]" },
{ name = "Ronald J. Pandolfi", email = "[email protected]" },
]
maintainers = [
{ name = "Marcus Michael Noack", email = "[email protected]" },
{ name = "Ronald J. Pandolfi", email = "[email protected]" },
]
description = "Autonomous data acquisition"
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["gaussian process", "bayesian optimization", "autonomous", "self driving", "adaptive"]
classifiers = [
"Development Status :: 5 - Production/Stable",
'Intended Audience :: Developers',
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
"Natural Language :: English",
]
dynamic = ["version"]
[project.optional-dependencies]
docs = ['sphinx', 'sphinx-rtd-theme', 'myst-parser', 'myst-nb', 'sphinx-panels', 'autodocs', 'sphinx-hoverxref']
tests = ['pytest', 'codecov', 'pytest-cov']
plotting = ['matplotlib', 'plotly', 'notebook']
[project.urls]
Homepage = "https://gpcam.lbl.gov"
Documentation = "https://gpcam.readthedocs.io/"
Repository = "https://github.com/lbl-camera/gpcam.git"
"Bug Tracker" = "https://github.com/lbl-camera/gpcam/issues"
Changelog = "https://github.com/lbl-camera/gpcam/commits/master/"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "gpcam/_version.py"
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
"/docs",
"/examples",
"/tests",
]
[tool.hatch.build.targets.wheel]
packages = ["gpcam"]
[tool.black]
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
)/
'''