-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (39 loc) · 1.3 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
[tool.poetry]
name = "asserts"
version = "0.13.2.dev0"
description = "Stand-alone Assertions"
readme = "README.md"
authors = ["Sebastian Rittau <[email protected]>"]
license = "MIT"
homepage = "https://github.com/srittau/python-asserts"
repository = "https://github.com/srittau/python-asserts"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
]
packages = [{ include = "asserts" }]
include = ["*/py.typed", "*.pyi"]
[tool.poetry.urls]
"GitHub" = "https://github.com/srittau/python-asserts"
"Bug Tracker" = "https://github.com/srittau/python-asserts/issues"
"Changes" = "https://github.com/srittau/python-asserts/blob/main/CHANGELOG.md"
[tool.poetry.dependencies]
python = ">=3.8.1"
typing-extensions = "^4.10.0"
[tool.poetry.group.dev.dependencies]
mypy = ">=1.9,<1.15"
poethepoet = ">=0.27.0,<0.31"
ruff = ">=0.5.1,<0.10.0"
[tool.ruff]
line-length = 79
target-version = "py38"
[tool.poe.tasks]
test = "python3 -Wall -m unittest test_asserts"
doctest = "python3 -m doctest asserts/__init__.py"
lint = "ruff check asserts test_asserts.py"
typecheck = "mypy asserts test_asserts.py"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"