-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (46 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
54 lines (46 loc) · 1.18 KB
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "physbo"
version = "3.2.0"
description = "optimization tool for PHYSics based on Bayesian Optimization"
readme = { file = "README.md", content-type = "text/markdown" }
license = "MPL-2.0"
authors = [ { name = "PHYSBO developers", email = "physbo-dev@issp.u-tokyo.ac.jp" } ]
requires-python = ">=3.9"
dependencies = [
"numpy",
"odat-se>=3.2.0",
"scipy",
]
[project.optional-dependencies]
odat-se = [ "odat-se" ]
docs = [
"gitpython>=3.1.45",
"jupyter>=1.1.1",
"matplotlib>=3.9.4",
"nbsphinx>=0.9.7",
"sphinx>=7.4.7",
"sphinx-rtd-theme>=3.0.2",
]
tutorials = [
"jupyter>=1.1.1",
"matplotlib>=3.9.4",
"odat-se>=3.2.0",
"pandas>=2.3.3",
]
tests = [
"pytest>=8.4.2",
"pytest-mock>=3.15.1",
]
[project.urls]
homepage = "https://www.pasums.issp.u-tokyo.ac.jp/physbo/en"
source = "https://github.com/issp-center-dev/PHYSBO"
documentation = "https://issp-center-dev.github.io/PHYSBO/"
releasenotes = "https://github.com/issp-center-dev/PHYSBO/releases"
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
[tool.ruff.lint]
ignore = ["E741"]