-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
45 lines (40 loc) · 891 Bytes
/
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
[tool]
[tool.commitizen]
name = "cz_conventional_commits"
version = "8.1.1"
tag_format = "$version"
version_files = ["pyproject.toml"]
[tool.ruff.lint]
ignore = ['E701', 'E731', 'E741']
[project]
name = "PyExpUtils-andnp"
version = "8.1.1"
description = "A small set of utilities for RL and ML experiments"
authors = [
{name = "Andy Patterson", email = "[email protected]"},
]
dependencies = [
"numba>=0.57.0",
"numpy>=1.21.5",
"filelock>=3.0.0",
"pandas",
"connectorx",
]
requires-python = ">=3.10"
readme = "README.md"
license = {text = "MIT"}
[project.optional-dependencies]
dev = [
"ruff",
"commitizen",
"pre-commit",
"types-filelock",
"build",
"twine",
"pyright>=1.1.324",
]
[project.scripts]
run-parallel = "PyExpUtils.parallel_runner:main"
[build-system]
requires = ["pdm-pep517>=1.0.0"]
build-backend = "pdm.pep517.api"