-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
113 lines (105 loc) · 3.16 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
[tool.towncrier]
package = "openskill"
package_dir = "openskill"
directory = "changes"
filename = "CHANGELOG.rst"
issue_format = "`#{issue} <https://github.com/vivekjoshy/openskill.py/issues/{issue}>`_"
type = [
{ name = "Breaking Changes", directory = "breaking", showcontent = true },
{ name = "Deprecation", directory = "deprecation", showcontent = true },
{ name = "Features", directory = "feature", showcontent = true },
{ name = "Bugfixes", directory = "bugfix", showcontent = true },
{ name = "Documentation Improvements", directory = "doc", showcontent = true },
]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra --strict-markers --ignore=docs/conf.py --ignore=setup.py --ignore=benchmark --ignore=ci --ignore=.eggs --doctest-modules --doctest-glob=/*.py --tb=short"
norecursedirs = [
".git",
".tox",
".env",
"dist",
"build",
"migrations"
]
testpaths = [
"tests"
]
python_files = [
"test_*.py",
"*_test.py",
"tests.py"
]
doctest_optionflags = "NUMBER"
[tool.isort]
profile = "black"
[tool.mypy]
python_version = "3.10"
strict = true
[project]
name = "openskill"
version = "6.0.2"
authors = [
{name = "Vivek Joshy", email = "[email protected]"},
]
maintainers = [
{name = "Vivek Joshy", email = "[email protected]"}
]
description = "Multiplayer Rating System. No Friction."
readme = "README.md"
requires-python = "~=3.10"
keywords = ["ranking", "trueskill", "statistics", "rating", "math", "rank"]
license = {text = "MIT"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy"
]
[project.urls]
Source = "https://github.com/vivekjoshy/openskill.py"
Documentation = "https://openskill.me/en/stable"
Changelog = "https://github.com/vivekjoshy/openskill.py/blob/main/CHANGELOG.rst"
Funding = "https://opencollective.com/openskill"
Tracker = "https://github.com/vivekjoshy/openskill.py/issues"
[tool.uv]
dev-dependencies = [
"sphinx~=8.1",
"nbsphinx~=0.9",
"pygments~=2.18",
"shibuya~=2024.7",
"ipykernel~=6.29",
"matplotlib~=3.9",
"myst-parser~=4.0",
"sphinx-intl~=2.2",
"sphinx-favicon~=1.0",
"sphinx-docsearch~=0.1",
"sphinx-copybutton~=0.5",
"sphinxext-opengraph~=0.9",
"sphinxcontrib-bibtex~=2.6",
"sphinx-autodoc-typehints~=2.2",
"tox~=4.16",
"mypy~=1.10",
"pytest~=8.2",
"coverage~=7.6",
"pytest-cov~=5.0",
"twine~=5.1",
"build~=1.2",
"isort~=5.13",
"black[jupyter]~=24.4",
"codecov~=2.1",
"towncrier~=23.11",
"bump-my-version~=0.24.2",
]
[tool.setuptools]
package-dir = {"openskill" = "openskill"}
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"