-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
72 lines (61 loc) · 1.4 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
[project]
name = "netobs"
version = "0.1.0"
license = {file = "LICENSE"}
description = "Observables with neural network VMC"
authors = [
{name = "Yubing Qian", email="[email protected]"}
]
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only"
]
dependencies = [
"omegaconf",
"jax",
"jaxlib",
"ml_collections"
]
[project.urls]
Homepage = "https://github.com/bytedance/NetObs"
Repository = "https://github.com/bytedance/NetObs.git"
"Bug Tracker" = "https://github.com/bytedance/NetObs/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.optional-dependencies]
dev = [
"pre-commit",
"ruff",
"mypy",
"pydoclint",
"pytest",
"syrupy",
]
[project.scripts]
netobs = "netobs.__main__:cli"
[tool.mypy]
ignore_missing_imports = true
[tool.pydoclint]
style = "google"
arg-type-hints-in-docstring = false
check-return-types = false
check-yield-types = false
[tool.flake8]
max-line-length = 88
extend-ignore = ["E203"]
docstring-style = "google"
[tool.ruff.lint]
extend-select = ["D", "I001"]
ignore = ["D1"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.isort]
known-first-party = ["netobs"]
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning",
]