forked from SirRender00/texasholdem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (37 loc) · 1.13 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
[tool.poetry]
name = "texasholdem"
version = "0.11.0"
description = "A texasholdem python package"
authors = ["Evyn Machi <[email protected]>"]
keywords = ['texasholdem', 'holdem', 'poker']
readme = "README.md"
license = "MIT"
homepage = "https://github.com/SirRender00/texasholdem"
repository = "https://github.com/SirRender00/texasholdem"
documentation = "https://texasholdem.readthedocs.io/en/stable/"
include = [
"texasholdem",
"LICENSE",
"README.md",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/SirRender00/texasholdem/issues"
"Wiki" = "https://github.com/SirRender00/texasholdem/wiki"
[tool.poetry.dependencies]
python = "^3.8"
Deprecated = "^1.2.13"
windows-curses = { version = "^2.3.1", markers = "sys_platform == 'win32'" }
[tool.poetry.dev-dependencies]
py = "^1.11.0"
pytest = "^8.3.3"
pytest-parallel = "^0.1.1"
pylint = "^3.2.6"
sphinx = "^7.1.2"
sphinx-rtd-theme = "^2.0.0"
black = "^23.12.1"
coverage = "^7.5.1"
[tool.pylint.master]
disable = ["import-error", "missing-module-docstring", "unknown-option-value"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"