-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
74 lines (64 loc) · 1.83 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[project]
name = "strongtyping"
version = "3.13.1"
authors = [
{ name="FelixTheC", email="[email protected]" },
]
description = "Decorator which checks whether the function is called with the correct type of parameters"
readme = "README.md"
requires-python = ">=3.13"
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.13",
]
license = {text = "MIT License"}
[project.urls]
Homepage = "https://github.com/FelixTheC/strongtyping"
Repository = "https://github.com/FelixTheC/strongtyping"
Documentation = "https://strongtyping.readthedocs.io/en/latest/"
[tool.setuptools]
packages = ["strongtyping", "strongtyping-stubs"]
[tool.black]
line-length = 100
target-version = ['py39']
#[tool.bumpver]
#current_version = "1970.1.1"
#version_pattern = "YYYY.MM.INC1"
#commit_message = "Bump version {old_version} -> {new_version}"
#commit = true
#tag = false
#push = false
#
#[tool.bumpver.file_patterns]
#"pyproject.toml" = ['current_version = "{version}"']
#"setup.py" = ['version="{pep440_version}"']
#"README.md" = ['**Last release:** {version}']
[tool.isort]
combine_as_imports = true
line_length = 100
profile = "black"
[tool.ruff]
exclude = ["strongtyping/tests"]
line-length = 100
target-version = "py312"
[tool.poetry]
name = "strongtyping"
version = "3.12.1"
description = "Decorator which checks whether the function is called with the correct type of parameters"
authors = ["FelixTheC <[email protected]>"]
license = "MIT"
packages = [
{include = "strongtyping"},
{include = "strongtyping-stubs"},
]
exclude = ["strongtyping/tests"]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
ujson = "^5.5.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
codecov = "^2.1.12"
[build-system]
requires = ["setuptools >= 61.0", "wheel"]
build-backend = "setuptools.build_meta"