-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
75 lines (64 loc) · 1.77 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
75
[tool.poetry]
authors = ["Anthony Mugendi <[email protected]>"]
description = "An amazing alternative to Python's builtin timeit module that allows for high resolution timing of functions as well as in-depth line-by-line timing. It also exposes convenient classes to measure execution time for any arbitrary code."
name = "wraptimer"
readme = "README.md"
version = "0.1.2"
#https://github.com/python-poetry/poetry/blob/master/pyproject.toml
#https://gist.github.com/nazrulworld/3800c84e28dc464b2b30cec8bc1287fc
classifiers = [
"Topic :: Software Development :: Debuggers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Testing",
"Programming Language :: Python :: 3"
]
keywords = ["function", "time", "duration", "trace", "timer", "timeit"]
license = "MIT"
maintainers = []
homepage="https://mugendi.github.io/wraptimer/"
repository="https://github.com/mugendi/wraptimer"
# ducumentation="https://mugendi.github.io/wraptimer/"
[tool.poetry.dependencies]
python = "^3.9"
termcolor = "^2.3.0"
# optional groups
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.test]
optional = true
[tool.poetry.group.doc]
optional = true
[tool.poetry.group.test.dependencies]
flake8 = "^6.0.0"
pytest = "^7.3.2"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
isort = "^5.12.0"
pre-commit = "^3.3.3"
[tool.poetry.group.doc.dependencies]
markdown-include = "^0.8.1"
mkdocs = "^1.4.3"
mkdocs-ansible = "^0.1.6"
mkdocstrings = "^0.22.0"
mkdocstrings-python = "^1.1.2"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]
[tool.isort]
profile = "black"
[tool.black]
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| docs
)/
'''
line-length = 90