-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (53 loc) · 1.44 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
[tool.poetry]
name = "harmon"
version = "0.1.1"
description = "A chess engine that considers human mistakes"
authors = ["Mahdi Khodabandeh <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/khoda81/harmon"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Games/Entertainment :: Board Games",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Framework :: Pytest",
"Natural Language :: English",
"Development Status :: 3 - Alpha",
"Environment :: Console",
]
[tool.poetry.dependencies]
python = "^3.9"
bidict = ">=0.22.1"
torch = "==1.12.1"
more-itertools = "^10.1.0"
attrs = "^23.1.0"
zstandard = "^0.21.0"
python-chess = "^1.999"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.2"
pytest-cov = "^4.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.report]
exclude_also = [
"def __repr__",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
]
[tool.pytest.ini_options]
addopts = """
-v
--doctest-modules
--doctest-report ndiff
--doctest-glob='*.rst'
--doctest-glob='*.txt'
--cov='harmon'
--cov-config=.coveragerc
"""
doctest_optionflags = "NORMALIZE_WHITESPACE ELLIPSIS"