-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (57 loc) · 1.45 KB
/
pyproject.toml
File metadata and controls
65 lines (57 loc) · 1.45 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
[tool]
[tool.commitizen]
name = "cz_conventional_commits"
version = "1.1.2"
tag_format = "$version"
version_files = ["pyproject.toml"]
[tool.ruff.lint]
select = ['F', 'E', 'W', 'B']
ignore = ['E501', 'E701']
[tool.pyright]
include = ['rlevaluation', 'tests']
venvPath = '.'
venv = '.venv'
typeCheckingMode = 'standard'
useLibraryCodeForTypes = true
[tool.setuptools]
packages = ["rlevaluation"]
[project]
name = "rlevaluation"
version = "1.1.2"
description = ""
authors = [
{name = "Andy Patterson", email = "andnpatterson@gmail.com"},
]
dependencies = [
"polars~=1.39",
"numba~=0.65",
"numpy~=2.4",
"scipy~=1.17",
]
requires-python = ">=3.11"
readme = "README.md"
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[project.urls]
Homepage = "https://github.com/andnp/rlevaluation"
Documentation = "https://github.com/andnp/rlevaluation/blob/main/README.md"
Repository = "https://github.com/andnp/rlevaluation"
Issues = "https://github.com/andnp/rlevaluation/issues"
Changelog = "https://github.com/andnp/rlevaluation/blob/main/CHANGELOG.md"
[dependency-groups]
dev = [
"commitizen>=4.13.10",
"matplotlib>=3.10.8",
"pip>=26.0.1",
"pre-commit>=4.5.1",
"pyright>=1.1.408",
"pytest>=9.0.3",
"pytest-cov>=7.1.0",
"ruff>=0.15.10",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"