forked from Amii-Open-Source/recommence
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (48 loc) · 1.02 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
[tool]
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.0.0"
tag_format = "$version"
version_files = ["pyproject.toml"]
[tool.ruff.lint]
select = ['F', 'E', 'W', 'B']
ignore = ['E501', 'E701']
[tool.pyright]
include = ['src']
venvPath = '.'
venv = '.venv'
typeCheckingMode = 'standard'
useLibraryCodeForTypes = true
[project]
name = "recommence"
version = "0.0.0"
description = ""
authors = [
{name = "Andy Patterson", email = "[email protected]"},
]
dependencies = [
"numpy>=1.20,<=2.1.1",
]
requires-python = ">=3.10,<3.13"
readme = "README.md"
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[project.optional-dependencies]
dev = [
"pip",
"ruff",
"pytest",
"pytest-cov",
"pyright",
"commitizen",
"pre-commit",
"PyExpUtils-andnp~=8.1",
"replaytables-andnp~=7.0",
"rlglue-andnp~=1.0",
"PyFixedReps-andnp~=4.0",
"gymnasium",
"numba",
]