-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (35 loc) · 911 Bytes
/
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
[build-system]
requires = [ "setuptools >= 67.1", "wheel"]
build-backend = "setuptools.build_meta"
[tool.isort]
profile = "black"
known_tno= "tno"
sections= ["FUTURE", "STDLIB", "THIRDPARTY", "TNO", "FIRSTPARTY", "LOCALFOLDER"]
no_lines_before="LOCALFOLDER"
[tool.mypy]
plugins = ["numpy.typing.mypy_plugin"]
strict = true
show_error_context = true
install_types = true
explicit_package_bases=true
namespace_packages=true
show_error_codes=true
ignore_missing_imports=true
[tool.pylint."TYPECHECK"]
generated-members = ["torch.*", "numpy.*"]
[tool.pylint.similarities]
ignore-imports="yes"
ignore-signatures="yes"
[tool.tbump]
[tool.tbump.version]
current = "1.2.1"
regex = '''
\d+\.\d+\.\d+(-(.*))?
'''
[tool.tbump.git]
message_template = "Bump to {new_version}"
tag_template = "v{new_version}"
[[tool.tbump.file]]
src = "pyproject.toml"
[[tool.tbump.file]]
src = "tno/quantum/ml/datasets/__init__.py"