-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (41 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
50 lines (41 loc) · 1.23 KB
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
[tool.poetry]
name = "assertpy-stubs"
version = "1.1.2"
description = "Mypy|Pyright plugin and stubs for assertpy"
authors = ["SOCGNA KOUYEM Childeric <socgnachilderic@proton.me>"]
maintainers = ["SOCGNA KOUYEM Childeric <socgnachilderic@proton.me>"]
keywords = ["mypy", "pyright", "assertpy", "stubs"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/socgnachilderic/assertpy-stubs"
repository = "https://github.com/socgnachilderic/assertpy-stubs"
packages = [{ include = "assertpy-stubs" }]
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Natural Language :: English",
]
[tool.poetry.dependencies]
python = ">=3.9"
assertpy = "^1.1"
typing-extensions = "^4.12.2"
[tool.poetry.group.dev.dependencies]
black = "^24.4.2"
isort = "^5.13.2"
commitizen = "^3.27.0"
pre-commit = "^3.7.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
## Black Configurations
[tool.black]
line-length = 88
target-version = ["py39", "py310", "py311", "py312"]
## Isort Configurations
[tool.isort]
py_version = 39
profile = "black"
combine_as_imports = true
lines_after_imports = 2