-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (47 loc) · 1.3 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
[project]
name = "bgtrainer"
version = '0.0.2'
description = "A fast portable backgammon trainer"
readme = "README.md"
authors = [{ name = "Orad Reshef", email = "oradwastaken@gmail.com" }]
requires-python = ">=3.11"
license = { text = "MIT License" }
classifiers = [
"Programming Language :: Python :: 3",
"Environment :: Console",
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Topic :: Games/Entertainment :: Board Games",
"Typing :: Typed"
]
dynamic = ["dependencies", "optional-dependencies"]
[project.scripts]
bgtrainer = "bgtrainer.bgtrainer:main"
[project.urls]
Repository = "https://github.com/oradwastaken/backgammon_trainer/"
[tool.setuptools.packages.find]
where = ["src"]
include = ["bgtrainer*"]
exclude = ["test"]
[tool.setuptools.package-data]
bgtrainer = ["data/*.txt", "data/*.csv"]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[tool.setuptools.dynamic.optional-dependencies]
dev = { file = ["requirements-dev.txt"] }
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.black]
line-length = 100
target-version = ['py311']
[tool.refurb]
ignore = [140]
[tool.coverage.run]
omit = [
"tests/*",
"bgtrainer/__init__.py",
]
[tool.coverage.report]
skip_empty = true