-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (55 loc) · 1.57 KB
/
pyproject.toml
File metadata and controls
67 lines (55 loc) · 1.57 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
[tool.poetry]
name = "resource_manager"
version = "0.0.1"
description = "Resource manager for python"
authors = ["mrjk <mrjk.78@gmail.com>"]
license = "GPLv3"
readme = "README.md"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Topic :: Utilities",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules"
]
# Dependencies groups
# ========================
[tool.poetry.dependencies]
python = "^3.9"
pydot = "^3.0.4"
[tool.poetry.group.dev.dependencies]
black = "^24.10.0"
pytest = "^8.3.4"
pytest-cov = "^6.0.0"
jupyterlab = "^4.3.4"
pytest-regressions = "^2.6.0"
pytest-clarity = "^1.0.1"
pylint = "^3.3.3"
yamllint = "^1.35.1"
pymarkdownlnt = "^0.9.26"
hypothesis = "^6.129.4"
pytest-benchmark = "^5.1.0"
[tool.poetry.group.docs.dependencies]
mkdocs-material = "^9.5.49"
mkdocstrings = {extras = ["python"], version = "^0.27.0"}
pylint = "^3.3.3"
# Poetry bumpversion
# ========================
[tool.poetry_bumpversion.file."resource_manager/__init__.py"]
# Pytest config
# ========================
[tool.pytest.ini_options]
log_cli_level = "DEBUG"
log_format = "%(asctime)s %(levelname)s %(message)s"
pythonpath = [
"."
]