-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (51 loc) · 1.29 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
[tool.poetry]
name = "horsetalk"
version = "0.25.3"
description = "A library of enums and parsers for common horseracing terminology"
authors = ["peaky76 <[email protected]>"]
license = "GPL-3.0-only"
readme = "README.md"
include = ["**/*.pyi"]
[tool.poetry.dependencies]
python = "^3.11.0"
peak-utility = "~0"
pendulum = "^3.0.0"
pint = ">=0.23,<0.25"
[tool.poetry.group.dev.dependencies]
auto-changelog = "^0.6.0"
babel = "^2.14.0"
coverage = "^7.2.2"
mypy = "^1.1.1"
pre-commit = ">=3.6,<5.0"
pytest = ">=7.2.2,<9.0.0"
pytest-codspeed = "^2.2.0"
pytest-cov = ">=4,<6"
pytest-mock = "^3.10.0"
sphinx = ">=6.1.3,<9.0.0"
sphinx-rtd-theme = ">=1.2,<4.0"
ruff = ">=0.0.261,<0.6.10"
radon = "^6.0.1"
[tool.ruff.lint]
select = [
"E", # pycodestyle Error
"F", # pyflakes
"C90", # mccabe
"I", # isort
"N", # pep8-naming
"UP", # pyupgrade
"FBT", # flake8-boolean-trap
"C4", # flake8-comprehensions
"PYI", # flake8-pyi
"PT", # flake8-pytest-style
"RSE", # flake8-raise
"RET", # flake8-return
"SIM", # flake8-simplify
"PTH", # flake8-use-pathlib
"PERF", # perflint
"FURB", # refurb
"RUF", # ruff specific
]
ignore = ["E501", "E741", "F821", "PERF203", "PT011"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"