-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
96 lines (86 loc) · 2.16 KB
/
Copy pathpyproject.toml
File metadata and controls
96 lines (86 loc) · 2.16 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
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
89
90
91
92
93
94
95
96
[project]
name = "scikit-quri"
version = "1.1.0"
description = ""
authors = [{ name = "Qulacs-Osaka", email = "qulacs.osaka@gmail.com" }]
requires-python = ">=3.10,<3.12"
readme = "./README.md"
license = "MIT"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"scikit-learn>=1.4.0,<2",
"quri-parts-openfermion>=0.23.0,<0.24",
"quri-parts-oqtopus==1.0.3",
"quri-parts==0.24.1",
"scaluq>=0.1.0",
]
[project.urls]
Homepage = "https://github.com/Qulacs-Osaka/scikit-quri"
Repository = "https://github.com/Qulacs-Osaka/scikit-quri"
[project.optional-dependencies]
qulacs = [
"quri-parts>=0.24.1",
]
[dependency-groups]
dev = [
"pytest>=7.4.4,<8",
"ruff>=0.11.11,<0.12",
"mypy>=1.8.0,<2",
"pytest-cov>=4.1.0,<5",
"matplotlib>=3.10.7",
"pandas>=2.3.3",
"seaborn>=0.13.2",
"pre-commit>=4.5.0",
]
doc = [
"Sphinx>=5.2.3,<6",
"sphinx-book-theme>=1.0.1,<2",
"ipykernel>=6.16.0,<7",
"myst-nb>=1.0",
]
[tool.uv]
default-groups = ["dev"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F"]
# select = ["ALL"]
# ignore = ["D107"]
[tool.mypy]
check_untyped_defs = true
disallow_any_decorated = false
disallow_any_generics = true
disallow_any_unimported = false
disallow_incomplete_defs = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_decorators = false
disallow_untyped_defs = true
ignore_errors = false
ignore_missing_imports = true
no_implicit_optional = true
python_version = "3.10"
show_error_codes = true
strict_equality = true
strict_optional = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_configs = true
warn_unused_ignores = true
[tool.pytest.ini_options]
markers = [
"oqtopus: mark test to run only with Oqtopus backend"
]