-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (52 loc) · 1.52 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
[tool.poetry]
name = "pysvt"
version = "0.6.0"
description = "A simple test case runner in Python that uses TOML configurations and decorator syntax."
authors = ["dhzdhd <[email protected]>"]
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
license = "LICENSE"
[tool.hatch.metadata]
Homepage = "https://github.com/dhzdhd/pysvt"
Repository = "https://github.com/dhzdhd/pysvt.git"
Issues = "https://github.com/dhzdhd/pysvt/issues"
Changelog = "https://github.com/dhzdhd/pysvt/blob/master/CHANGELOG.md"
# Documentation = ""
[tool.poetry.dependencies]
python = "^3.8.1"
rich = "^13.7.0"
[tool.poetry.group.dev.dependencies]
taskipy = "^1.12.2"
flake8 = "^6.1.0"
black = "^23.12.0"
isort = "^5.13.2"
pytest = "^7.4.3"
pyright = "^1.1.342"
pytest-cov = "^4.1.0"
[tool.taskipy.tasks]
format = "black --check ."
lint = "flake8 pysvt"
sort = "isort pysvt"
sortc = "isort -c pysvt"
test = "pytest tests"
type = "pyright"
cov = "pytest --cov=tests/"
publish = "poetry publish --build"
[tool.pyright]
include = ["pysvt", "examples"]
defineConstant = { DEBUG = true }
reportMissingImports = true
reportMissingTypeStubs = false
pythonVersion = "3.12"
pythonPlatform = "Windows"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"