-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
174 lines (160 loc) · 4.02 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
[build-system]
build-backend = "setuptools.build_meta"
requires = ['setuptools>=61.2', "setuptools-scm", "requests", "dataclasses_json"]
[project]
authors = [
{name = "Ludy87", email = "[email protected]"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development",
"Topic :: Utilities",
"Topic :: Home Automation",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
"requests>=2",
"dataclasses-json>=0.6"
]
description = "Python EcoTrend-ista Api"
dynamic = ["version", "readme"]
keywords = ["python", "api", "ecotrend", "ista"]
license = {file = "LICENSE"}
name = "pyEcoTrend-ista"
# readme = "README.md"
requires-python = ">=3.11"
[project.optional-dependencies]
doc = [
"babel==2.16.0",
"cachetools==5.5.0",
"certifi==2024.12.14",
"chardet==5.2.0",
"charset-normalizer==3.4.1",
"click==8.1.8",
"colorama==0.4.6",
"csscompressor==0.9.5",
"distlib==0.3.9",
"filelock==3.16.1",
"ghp-import==2.1.0",
"gitdb==4.0.12",
"gitpython==3.1.44",
"griffe==1.5.5",
"htmlmin2==0.1.13",
"idna==3.10",
"jinja2==3.1.5",
"jsmin==3.0.1",
"markdown==3.7",
"markdown-callouts==0.4.0",
"markupsafe==3.0.2",
"mdx-gh-links==0.4",
"mergedeep==1.3.4",
"mkdocs==1.6.1",
"mkdocs-autorefs==1.3.0",
"mkdocs-click==0.8.1",
"mkdocs-get-deps==0.2.0",
"mkdocs-git-authors-plugin==0.9.2",
"mkdocs-git-committers-plugin-2==2.4.1",
"mkdocs-git-revision-date-localized-plugin==1.3.0",
"mkdocs-literate-nav==0.6.1",
"mkdocs-material==9.5.50",
"mkdocs-material-extensions==1.3.1",
"mkdocs-minify-plugin==0.8.0",
"mkdocstrings[python]==0.27.0",
"mkdocstrings-python==1.13.0",
"packaging==24.2",
"paginate==0.5.7",
"pathspec==0.12.1",
"platformdirs==4.3.6",
"pluggy==1.5.0",
"pygments==2.19.1",
"pymdown-extensions==10.14",
"pyproject-api==1.8.0",
"python-dateutil==2.9.0.post0",
"pytz==2024.2",
"pyyaml==6.0.2",
"pyyaml-env-tag==0.1",
"regex==2024.11.6",
"requests==2.32.3",
"six==1.17.0",
"smmap==5.0.2",
"tomli==2.2.1",
"tox==4.23.2",
"typing-extensions==4.12.2",
"urllib3==2.3.0",
"virtualenv==20.29.1",
"watchdog==6.0.0"
]
publish = [
"tox==4.23.2"
]
test = [
"tox==4.23.2",
"pytest==8.2.2",
"pytest-cov==5.0.0",
"pytest-xdist==3.6.1",
"requests-mock[fixture]==1.12.1",
"syrupy==4.6.1"
]
[project.urls]
Documentation = "https://ludy87.github.io/pyecotrend-ista/"
Homepage = "http://github.com/Ludy87/pyecotrend-ista"
Repository = "http://github.com/Ludy87/pyecotrend-ista"
[tool.black]
line-length = 127
target-version = ["py311"]
[tool.numpydoc_validation]
checks = [
"all", # report on all checks, except the below
"SA01",
"GL01",
"GL02",
"GL03",
"SS05"
]
exclude = [
'\.__str__$'
]
[tool.pylint.FORMAT]
max-line-length = 127
[tool.pylint."MESSAGES CONTROL"]
disable = [
"too-many-ancestors",
"too-many-arguments",
"too-many-instance-attributes",
"wrong-import-order",
"too-many-lines",
"too-many-locals"
]
[tool.pytest.ini_options]
addopts = "--cov=src/pyecotrend_ista/ --cov-report=term-missing -n auto"
pythonpath = ["src"]
testpaths = ["tests"]
[tool.ruff]
indent-width = 4
line-length = 127
target-version = "py311"
[tool.ruff.format]
docstring-code-format = true
docstring-code-line-length = 127
indent-style = "space"
quote-style = "double"
[tool.ruff.lint]
extend-select = ["I", "TRY", "UP", "D", "W", "N"]
ignore = ["D213", "D202", "D203", "D213", "UP038", "D406", "D407", "TRY003"]
[tool.ruff.lint.isort]
combine-as-imports = true
force-sort-within-sections = true
known-first-party = ["pyecotrend_ista"]
split-on-trailing-comma = false
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.setuptools.dynamic]
readme = {file = ["README.md"]}
version = {attr = 'pyecotrend_ista.__version.__version__'}