-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (59 loc) · 1.7 KB
/
pyproject.toml
File metadata and controls
71 lines (59 loc) · 1.7 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[tool.poetry]
name = "DataExcept"
version = "0.1.0"
description = "A Python package providing structured, easily-extendable custom exception types."
authors = ["Diogo Ribeiro <dfr@esmad.ipp.pt>"]
maintainers = ["Diogo Ribeiro <diogo.debastos.ribeiro@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/DiogoRibeiro7/DataExcept"
repository = "https://github.com/DiogoRibeiro7/DataExcept"
documentation = "https://dataexcept.readthedocs.io"
packages = [{ include = "dataexcept" }]
keywords = ["exceptions", "errors", "logging"]
include = [
"CITATION.cff",
"LICENSE",
"CHANGELOG.md",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[tool.poetry.urls]
Changelog = "https://github.com/DiogoRibeiro7/DataExcept/releases"
Issues = "https://github.com/DiogoRibeiro7/DataExcept/issues"
[tool.poetry.scripts]
dataexcept = "dataexcept.__main__:main"
[tool.poetry.dependencies]
python = ">=3.10,<3.14"
tomli = { version = "*", python = "<3.11" }
[tool.poetry.group.dev.dependencies]
flake8 = "*"
pytest = "*"
coverage = "*"
sphinx = "*"
myst-parser = "*"
furo = "*"
ruff = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.flake8]
max-line-length = 88
extend-ignore = ["E203", "W503"]
[tool.isort]
profile = "black"
[tool.black]
line-length = 88
[tool.ruff]
line-length = 88
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F"]
ignore = []