-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
99 lines (84 loc) · 2.35 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[tool.poetry]
name = "eclypse"
version = "0.6.18"
description = "an Edge-CLoud pYthon Platform for Simulated runtime Environments"
authors = [
"Valerio De Caro <valerio.decaro@di.unipi.it>",
"Jacopo Massa <jacopo.massa@di.unipi.it>",
]
maintainers = [
"Valerio De Caro <valerio.decaro@di.unipi.it>",
"Jacopo Massa <jacopo.massa@di.unipi.it>",
]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/eclypse-org/eclypse"
repository = "https://github.com/eclypse-org/eclypse"
[tool.poetry.build]
script = "build.py"
generate-setup-file = false
[tool.poetry.dependencies]
python = ">=3.10, <3.13"
eclypse-core = "^0.6.18"
pandas = "^2.2.3"
tensorboardx = "^2.6.2.2"
ray = { extras = ["default"], version = "^2.8.0" }
[tool.poetry.extras]
remote = ["ray"]
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
black = "^24.10.0"
commitizen = "^3.30.1"
pre-commit = "^3.5.0"
isort = "^5.13.2"
pycln = "^2.4.0"
pylint = "^3.3.1"
docformatter = { extras = ["tomli"], version = "^1.7.5" }
[tool.poetry.group.deploy]
optional = true
[tool.poetry.group.deploy.dependencies]
mypy = "^1.13.0"
wheel = "^0.45.0"
setuptools = "^75.5.0"
twine = "^5.1.1"
[tool.poetry.group.docs]
optional = true
# To build the docs, at least python3.10 is required
[tool.poetry.group.docs.dependencies]
sphinx = { version = "^8.1.3", python = "^3.10" }
myst-parser = { version = "^4.0.0", python = "^3.10" }
sphinx-copybutton = "^0.5.2"
jinja2 = "^3.1.4"
docformatter = { extras = ["tomli"], version = "^1.7.5" }
sphinx-autobuild = "^2024.10.3"
enum-tools = { extras = ["sphinx"], version = "^0.12.0" }
sphinx-favicon = "^1.0.1"
sphinx-design = "^0.6.1"
sphinx-icon = "^0.2.2"
pydata-sphinx-theme = "^0.16.0"
[build-system]
requires = ["poetry-core", "setuptools", "wheel"]
build-backend = "poetry.core.masonry.api"
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.6.18"
tag_format = "$version"
version_files = ["pyproject.toml:version", "eclypse/__init__.py:__version__"]
[tool.pycln]
all = true
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 2
filter_files = true
skip = ["__init__.py"]
[tool.docformatter]
recursive = true
black = true
diff = true
tab-width = 4
[tool.pytest.ini_options]
testpaths = "tests"
addopts = "--cov-report=xml --cov-report=term-missing --cov"
filterwarnings = ["ignore::DeprecationWarning"]