-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 917 Bytes
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 917 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "soliscloud-api"
version = "1.3.2"
authors = [
{ name="Peter van Hulten", email="peter.vanhulten@gmx.net" },
]
description = "SolisCloud API wrapper for python"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"pybase64",
"aiohttp",
"async_timeout",
"throttler",
]
exclude = ["soliscloud_api.tests*"]
[project.urls]
"Homepage" = "https://github.com/hultenvp/soliscloud-api"
"Bug Tracker" = "https://github.com/hultenvp/soliscloud-api/issues"
[tool.setuptools.packages.find]
exclude = ["soliscloud_api.tests*"]
[tool.pytest.ini_options]
#addopts = ["--disable-warnings"]
testpaths = ["test"]
asyncio_default_fixture_loop_scope = "function"