-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (36 loc) · 1.1 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
[tool.poetry]
name = "executiontime"
version = "0.3.6"
description = "A simple function decorator to display its execution time on the console or in the logs."
authors = ["Timokasse <[email protected]>"]
license = "MIT"
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: French",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Testing",
]
keywords = ["testing", "logging", "time", "performance", "execution"]
packages = [{ include = "executiontime" }]
[tool.poetry.dependencies]
python = "^3.9"
colorama = "^0.4.6"
[tool.poetry.group.dev.dependencies]
pylint = "^3.0.3"
black = "^24.2.0"
mypy = "^1.8.0"
types-colorama = "^0.4.15.20240205"
pytest = "^8.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
strict = true
[tool.pylint.format]
# Maximum number of characters on a single line.
max-line-length = 160