forked from dominicprice/endplay
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (64 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
70 lines (64 loc) · 1.66 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
[tool.poetry]
name = "endplay"
version = "0.5.12"
description = "A suite of tools for generation and analysis of bridge deals"
license = "MIT"
authors = ["Dominic Price <dominicprice@outlook.com>"]
readme = "README.md"
packages = [{include = "endplay", from = "src"}]
classifiers = [
"Development Status :: 4 - Beta",
"Natural Language :: English",
"Topic :: Games/Entertainment",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
keywords = [
"bridge",
"cards",
"games",
"double dummy",
"dds",
"analysis",
"stats",
"deal",
"dealer"
]
include = [
{ path = "libs", format = "sdist" }
]
[tool.poetry.urls]
"Homepage" = "https://github.com/dominicprice/endplay"
"Documentation" = "https://endplay.readthedocs.io"
"Bug Tracker" = "https://github.com/dominicprice/endplay/issues"
[tool.poetry.dependencies]
python = "^3.9"
pyparsing = ">=3.0"
tqdm = ">=4.65"
numpy = ">=1.26"
matplotlib = ">=3.0"
more-itertools = ">=9.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.0"
black = "^24.2.0"
isort = "^5.13.2"
mypy = "^1.8.0"
coverage = "^7.4.3"
[tool.poetry.scripts]
endplay-interact = "endplay.interact.__main__:main"
endplay-dealer = "endplay.dealer.__main__:main"
[tool.poetry.build]
script = "build_ext.py"
generate-setup-file = true
[build-system]
requires = [
"poetry-core",
"setuptools==70.3.0",
"cmake>=3.13"
]
build-backend = "poetry.core.masonry.api"