-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
executable file
·62 lines (51 loc) · 1.43 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
[build-system]
requires = ["poetry-core>=1.9.1"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "ddcLogs"
version = "3.0.12"
description = "Easy logs with rotations"
license = "MIT"
readme = "README.md"
authors = ["Daniel Costa <[email protected]>"]
maintainers = ["Daniel Costa"]
repository = "https://github.com/ddc/ddcLogs"
homepage = "https://pypi.org/project/ddcLogs"
packages = [{include = "ddcLogs"}]
package-mode = true
keywords = [
"python3", "python-3", "python",
"log", "logging", "logger",
"logutils", "log-utils", "ddcLogs"
]
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Natural Language :: English",
]
[tool.poetry.group.test]
optional = true
[tool.poetry.dependencies]
python = "^3.10"
pydantic-settings = "^2.6.1"
python-dotenv = "^1.0.1"
pytz = "^2024.2"
[tool.poetry.group.test.dependencies]
coverage = "^7.6.9"
poethepoet = "^0.32.0"
pytest = "^8.3.4"
[tool.coverage.run]
omit = [
"tests/*",
]
[tool.poe.tasks]
_test = "coverage run -m pytest -v"
_coverage_report = "coverage report"
_coverage_xml = "coverage xml"
tests = ["_test", "_coverage_report", "_coverage_xml"]
test = ["tests"]